diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-10-11 21:20:22 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-10-30 16:11:01 +0200 |
| commit | 2b1252148d083eb47382733980ec069ef20dcfb6 (patch) | |
| tree | c9df5b4a7afec05421197e437ab38ea81e9cc926 /utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron | |
| parent | a9fc4885f2d4ab3fba8fd9fbaa0386090250bd11 (diff) | |
[brand] SearXNG - nginx & apache searxng.conf, uwsgi searxng.conf
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
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/; +} |