diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-10-30 16:12:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-30 16:12:57 +0000 |
| commit | 8f18c69f7ab387de18679b46c3d29365310b44d4 (patch) | |
| tree | c2fcc45ca5a7ff37b52f94eecedcff0968355c86 /utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron | |
| parent | 46fde2e98e0fd55e947c3d9c1663f22e3d34bf1e (diff) | |
| parent | db6a4d13e7ebe08a5df4fe6f99b0ef87aac94cc8 (diff) | |
Merge pull request #446 from return42/searxng-brand
[brand] SearXNG environment variables & /utils scripts
Diffstat (limited to 'utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron')
| -rw-r--r-- | utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron b/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron new file mode 100644 index 000000000..e25461c47 --- /dev/null +++ b/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron @@ -0,0 +1,16 @@ +# https://example.org/searx + +location ${SEARXNG_URL_PATH} { + proxy_pass http://127.0.0.1:4004/; + + proxy_set_header Host \$host; + proxy_set_header Connection \$http_connection; + proxy_set_header X-Real-IP \$remote_addr; + proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; + proxy_set_header X-Scheme \$scheme; + proxy_set_header X-Script-Name ${SEARXNG_URL_PATH}; +} + +location ${SEARXNG_URL_PATH}/static/ { + alias ${SEARX_SRC}/searx/static/; +} |