Browse Source

add nginx .conf and systemd .service files for meilisearch.

These files are an untested. I just added them to get the ball rolling with
them.
stable
Craig Oates 1 year ago
parent
commit
5c7782439a
  1. 8
      conf/meilisearch.conf
  2. 10
      conf/meilisearch.service

8
conf/meilisearch.conf

@ -0,0 +1,8 @@
server {
listen 80;
listen search.nicolaellisandritherdonarchive.com
server_name _;
location / {
proxy_pass http://127.0.0.1:7700;
}
}

10
conf/meilisearch.service

@ -0,0 +1,10 @@
[Unit]
Description=Meilisearch
After=systemd-user-sessions.service
[Service]
Type=simple
ExecStart=/usr/bin/meilisearch-beta --no-analytics --http-addr 127.0.0.1:7700 --env development --master-key meilisearch-beta-key
[Install]
WantedBy=default.target
Loading…
Cancel
Save