mirror of
https://github.com/searxng/searxng.git
synced 2025-08-13 15:26:43 +02:00
The HTTP X-Forwarded-Proto (XFP) request header is a *de-facto* standard header
for identifying the protocol (HTTP or HTTPS) that a client used to connect to a
proxy or load balancer.[1]
The ``X-Scheme`` header was added 10 years ago, why ``X-Scheme`` was used back
then and not ``X-Forwarded-Proto``, nobody knows today / possibly because
``X-Forwarded-Proto`` wasn't a *de-facto* standard back then.
[1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Forwarded-Proto
[2] 6ef7c3276
23 lines
653 B
Text
23 lines
653 B
Text
location ${SEARXNG_URL_PATH} {
|
|
|
|
uwsgi_pass unix://${SEARXNG_UWSGI_SOCKET};
|
|
|
|
include uwsgi_params;
|
|
|
|
uwsgi_param HTTP_HOST \$host;
|
|
uwsgi_param HTTP_CONNECTION \$http_connection;
|
|
|
|
# see flaskfix.py
|
|
uwsgi_param HTTP_X_FORWARDED_PROTO \$scheme;
|
|
uwsgi_param HTTP_X_SCRIPT_NAME ${SEARXNG_URL_PATH};
|
|
|
|
# see botdetection/trusted_proxies.py
|
|
uwsgi_param HTTP_X_REAL_IP \$remote_addr;
|
|
uwsgi_param HTTP_X_FORWARDED_FOR \$proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
# To serve the static files via the HTTP server
|
|
#
|
|
# location ${SEARXNG_URL_PATH}/static/ {
|
|
# alias ${SEARXNG_STATIC}/;
|
|
# }
|