From 6cccb46f2b2839daee13c5d12e86a7987a22e6cd Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 10 Aug 2025 13:05:40 +0200 Subject: [fix] replace X-Scheme by X-Forwarded-Proto header (#5107) 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] https://github.com/searx/searx/commit/6ef7c3276 --- searx/flaskfix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'searx/flaskfix.py') diff --git a/searx/flaskfix.py b/searx/flaskfix.py index cb2d87d44..b3587f4b8 100644 --- a/searx/flaskfix.py +++ b/searx/flaskfix.py @@ -21,7 +21,7 @@ class ReverseProxyPathFix: proxy_pass http://127.0.0.1:8000; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Script-Name /myprefix; } -- cgit v1.2.3