From 980e088d0dc1b2ab41a5bd324fec0b5b9cf8ac68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Bart=C3=ADk?= <63553146+SamuelBartik@users.noreply.github.com> Date: Sat, 14 Aug 2021 13:20:17 +0200 Subject: [PATCH] Added a note regarding the WebUI login mechanism stop working when using this configuration with HTTP only reverse proxy. --- NGINX-Reverse-Proxy-for-Web-UI.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NGINX-Reverse-Proxy-for-Web-UI.md b/NGINX-Reverse-Proxy-for-Web-UI.md index 03b3f49..917ce08 100644 --- a/NGINX-Reverse-Proxy-for-Web-UI.md +++ b/NGINX-Reverse-Proxy-for-Web-UI.md @@ -21,6 +21,8 @@ location /qbt/ { # For this use case, where qBittorrent itself is using plain HTTP # (and regardless of whether or not the external website uses HTTPS), # the flag must be set here, in the proxy configuration itself: + # Note: If this flag is set while the external website uses only HTTP, this will cause + # the login mechanism to not work without any apparent errors in console/network resulting in "auth loops". proxy_cookie_path / "/; Secure"; } ```