forked from searxng/searxng-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request searxng#2 from searxng/searxng
SearXNG
- Loading branch information
Showing
8 changed files
with
66 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# By default listen on https://localhost | ||
# To change this: | ||
# * uncomment SEARX_HOSTNAME, and replace <host> by the searx hostname | ||
# * uncomment SEARXNG_HOSTNAME, and replace <host> by the SearXNG hostname | ||
# * uncomment LETSENCRYPT_EMAIL, and replace <email> by your email (require to create a Let's Encrypt certificate) | ||
|
||
# SEARX_HOSTNAME=<host> | ||
# SEARXNG_HOSTNAME=<host> | ||
# LETSENCRYPT_EMAIL=<email> | ||
|
||
# automatically update settings to the new version | ||
# comment this line if you made / will make some modifications to the settings | ||
SEARX_COMMAND=-f | ||
SEARXNG_COMMAND=-f | ||
|
||
# use openssl rand -base64 33 | ||
MORTY_KEY=ReplaceWithARealKey! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
*~ | ||
|
||
searx-docker.service | ||
searxng-docker.service | ||
caddy | ||
srv | ||
searx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Unit] | ||
Description=SearXNG service | ||
Requires=docker.service | ||
After=docker.service | ||
|
||
[Service] | ||
Restart=always | ||
|
||
Environment=SEARXNG_DIR=/usr/local/searxng-docker | ||
Environment=SEARXNG_DOCKERCOMPOSEFILE=docker-compose.yaml | ||
|
||
ExecStart=/bin/sh -c "${SEARXNG_DIR}/start.sh" | ||
ExecStop=/bin/sh -c "${SEARXNG_DIR}/stop.sh" | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters