mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
Cache busting has caused serious problems for users in the past, here are two examples: - https://github.com/searxng/searxng/issues/4419 - https://github.com/searxng/searxng/issues/4481 And it makes development and deployment significantly more complex because it binds the client side to the server side: - https://github.com/searxng/searxng/pull/4466 In the light of a decoupled development of the WEB clients from the server side: - https://github.com/searxng/searxng/pull/4988 is it appropriate to abandon this feature. In fact, it has been ineffective since #4436 anyway. However, the benefit has always been questionable, since at best only a few kB of data are saved (at least in the context of an image_proxy, the effect is below the detection limit). Ultimately, the client is responsible for caching. Related: https://github.com/searxng/searxng/issues?q=label%3A%22clear%20browser%20cache%22 Closes: https://github.com/searxng/searxng/pull/4466 Closes: https://github.com/searxng/searxng/issues/1326 Closes: https://github.com/searxng/searxng/issues/964 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
39 lines
1.2 KiB
ApacheConf
39 lines
1.2 KiB
ApacheConf
# -*- coding: utf-8; mode: apache -*-
|
|
|
|
LoadModule ssl_module ${APACHE_MODULES}/mod_ssl.so
|
|
LoadModule headers_module ${APACHE_MODULES}/mod_headers.so
|
|
LoadModule proxy_module ${APACHE_MODULES}/mod_proxy.so
|
|
LoadModule proxy_uwsgi_module ${APACHE_MODULES}/mod_proxy_uwsgi.so
|
|
# LoadModule setenvif_module ${APACHE_MODULES}/mod_setenvif.so
|
|
#
|
|
# SetEnvIf Request_URI "${SEARXNG_URL_PATH}" dontlog
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
<Location ${SEARXNG_URL_PATH}>
|
|
|
|
Require all granted
|
|
Order deny,allow
|
|
Deny from all
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
Allow from all
|
|
|
|
# add the trailing slash
|
|
RedirectMatch 308 ${SEARXNG_URL_PATH}\$ ${SEARXNG_URL_PATH}/
|
|
|
|
ProxyPreserveHost On
|
|
ProxyPass unix:${SEARXNG_UWSGI_SOCKET}|uwsgi://uwsgi-uds-searxng/
|
|
|
|
# see flaskfix.py
|
|
RequestHeader set X-Scheme %{REQUEST_SCHEME}s
|
|
RequestHeader set X-Script-Name ${SEARXNG_URL_PATH}
|
|
|
|
# see limiter.py
|
|
RequestHeader set X-Real-IP %{REMOTE_ADDR}s
|
|
RequestHeader append X-Forwarded-For %{REMOTE_ADDR}s
|
|
|
|
</Location>
|
|
|
|
# To serve the static files via the HTTP server
|
|
#
|
|
# Alias ${SEARXNG_URL_PATH}/static/ ${SEARXNG_STATIC}/
|