summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/templates/etc/httpd/sites-available/searxng.conf5
-rw-r--r--utils/templates/etc/httpd/sites-available/searxng.conf:socket5
-rw-r--r--utils/templates/etc/nginx/default.apps-available/searxng.conf5
-rw-r--r--utils/templates/etc/nginx/default.apps-available/searxng.conf:socket5
-rw-r--r--utils/templates/etc/searxng/settings.yml3
-rw-r--r--utils/templates/etc/uwsgi/apps-archlinux/searxng.ini6
-rw-r--r--utils/templates/etc/uwsgi/apps-archlinux/searxng.ini:socket6
-rw-r--r--utils/templates/etc/uwsgi/apps-available/searxng.ini6
-rw-r--r--utils/templates/etc/uwsgi/apps-available/searxng.ini:socket6
9 files changed, 8 insertions, 39 deletions
diff --git a/utils/templates/etc/httpd/sites-available/searxng.conf b/utils/templates/etc/httpd/sites-available/searxng.conf
index 5278640c3..004066200 100644
--- a/utils/templates/etc/httpd/sites-available/searxng.conf
+++ b/utils/templates/etc/httpd/sites-available/searxng.conf
@@ -33,9 +33,6 @@ LoadModule proxy_http_module ${APACHE_MODULES}/mod_proxy_http.so
</Location>
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
+# To serve the static files via the HTTP server
#
# Alias ${SEARXNG_URL_PATH}/static/ ${SEARXNG_STATIC}/
diff --git a/utils/templates/etc/httpd/sites-available/searxng.conf:socket b/utils/templates/etc/httpd/sites-available/searxng.conf:socket
index b55ea7560..81bd7e4df 100644
--- a/utils/templates/etc/httpd/sites-available/searxng.conf:socket
+++ b/utils/templates/etc/httpd/sites-available/searxng.conf:socket
@@ -33,9 +33,6 @@ LoadModule proxy_uwsgi_module ${APACHE_MODULES}/mod_proxy_uwsgi.so
</Location>
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
+# To serve the static files via the HTTP server
#
# Alias ${SEARXNG_URL_PATH}/static/ ${SEARXNG_STATIC}/
diff --git a/utils/templates/etc/nginx/default.apps-available/searxng.conf b/utils/templates/etc/nginx/default.apps-available/searxng.conf
index 7225a8f96..27a8c9bcc 100644
--- a/utils/templates/etc/nginx/default.apps-available/searxng.conf
+++ b/utils/templates/etc/nginx/default.apps-available/searxng.conf
@@ -19,10 +19,7 @@ location ${SEARXNG_URL_PATH} {
}
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
+# To serve the static files via the HTTP server
#
# location ${SEARXNG_URL_PATH}/static/ {
# alias ${SEARXNG_STATIC}/;
diff --git a/utils/templates/etc/nginx/default.apps-available/searxng.conf:socket b/utils/templates/etc/nginx/default.apps-available/searxng.conf:socket
index 7a74eab48..9ff5658c4 100644
--- a/utils/templates/etc/nginx/default.apps-available/searxng.conf:socket
+++ b/utils/templates/etc/nginx/default.apps-available/searxng.conf:socket
@@ -16,10 +16,7 @@ location ${SEARXNG_URL_PATH} {
uwsgi_param HTTP_X_FORWARDED_FOR \$proxy_add_x_forwarded_for;
}
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
+# To serve the static files via the HTTP server
#
# location ${SEARXNG_URL_PATH}/static/ {
# alias ${SEARXNG_STATIC}/;
diff --git a/utils/templates/etc/searxng/settings.yml b/utils/templates/etc/searxng/settings.yml
index b5da38ebd..5e29825bf 100644
--- a/utils/templates/etc/searxng/settings.yml
+++ b/utils/templates/etc/searxng/settings.yml
@@ -25,9 +25,6 @@ valkey:
# URL to connect valkey database. Is overwritten by ${SEARXNG_VALKEY_URL}.
url: valkey://localhost:6379/0
-ui:
- static_use_hash: true
-
# preferences:
# lock:
# - autocomplete
diff --git a/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini b/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini
index 12543cf5b..3388e432f 100644
--- a/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini
+++ b/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini
@@ -75,11 +75,7 @@ pythonpath = ${SEARXNG_SRC}
http = ${SEARXNG_INTERNAL_HTTP}
buffer-size = 8192
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
-#
+# To serve the static files via the WSGI server
static-map = /static=${SEARXNG_STATIC}
static-gzip-all = True
offload-threads = %k
diff --git a/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini:socket b/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini:socket
index 0e6a7529d..4a55f0ab6 100644
--- a/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini:socket
+++ b/utils/templates/etc/uwsgi/apps-archlinux/searxng.ini:socket
@@ -72,11 +72,7 @@ pythonpath = ${SEARXNG_SRC}
socket = ${SEARXNG_UWSGI_SOCKET}
buffer-size = 8192
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
-#
+# To serve the static files via the WSGI server
static-map = /static=${SEARXNG_STATIC}
static-gzip-all = True
offload-threads = %k
diff --git a/utils/templates/etc/uwsgi/apps-available/searxng.ini b/utils/templates/etc/uwsgi/apps-available/searxng.ini
index 9887d7909..e47c74abc 100644
--- a/utils/templates/etc/uwsgi/apps-available/searxng.ini
+++ b/utils/templates/etc/uwsgi/apps-available/searxng.ini
@@ -78,11 +78,7 @@ pythonpath = ${SEARXNG_SRC}
http = ${SEARXNG_INTERNAL_HTTP}
buffer-size = 8192
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
-#
+# To serve the static files via the WSGI server
static-map = /static=${SEARXNG_STATIC}
static-gzip-all = True
offload-threads = %k
diff --git a/utils/templates/etc/uwsgi/apps-available/searxng.ini:socket b/utils/templates/etc/uwsgi/apps-available/searxng.ini:socket
index 9e2cfc273..fb96973ba 100644
--- a/utils/templates/etc/uwsgi/apps-available/searxng.ini:socket
+++ b/utils/templates/etc/uwsgi/apps-available/searxng.ini:socket
@@ -75,11 +75,7 @@ pythonpath = ${SEARXNG_SRC}
socket = ${SEARXNG_UWSGI_SOCKET}
buffer-size = 8192
-# uWSGI serves the static files and in settings.yml we use::
-#
-# ui:
-# static_use_hash: true
-#
+# To serve the static files via the WSGI server
static-map = /static=${SEARXNG_STATIC}
static-gzip-all = True
offload-threads = %k