summaryrefslogtreecommitdiff
path: root/utils/templates/etc/nginx/default.apps-available
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-06-16 16:30:18 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2022-07-30 13:39:35 +0200
commit692708aa771c1f4927a3037ecc5aa9c06f1a2494 (patch)
treec243e751db97f3b9aaf5bc68f8ccf9422aabe7eb /utils/templates/etc/nginx/default.apps-available
parented8a1690296cfc55f67dc0a4dac6dee06a47bd06 (diff)
[clean up] drop obsolete searx, filtron and morty install scripts
Since ./utils/searxng.sh is implemented, the old installation procedures from filtron, morty and searx can be removed. For users who want to upgrade, the procedures for removing old installations have still been retained. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/templates/etc/nginx/default.apps-available')
-rw-r--r--utils/templates/etc/nginx/default.apps-available/morty.conf11
-rw-r--r--utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron16
2 files changed, 0 insertions, 27 deletions
diff --git a/utils/templates/etc/nginx/default.apps-available/morty.conf b/utils/templates/etc/nginx/default.apps-available/morty.conf
deleted file mode 100644
index 51f083985..000000000
--- a/utils/templates/etc/nginx/default.apps-available/morty.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-# https://example.org/morty
-
-location /morty {
- proxy_pass http://127.0.0.1:3000/;
-
- 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;
-}
diff --git a/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron b/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron
deleted file mode 100644
index 631f2b265..000000000
--- a/utils/templates/etc/nginx/default.apps-available/searxng.conf:filtron
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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 ${SEARXNG_STATIC}/;
-}