fix(nginx): добавить X-Forwarded-Proto для корректного HTTPS в bus-ссылках и QR

This commit is contained in:
iqubik
2026-04-04 23:56:01 +03:00
parent cad277a712
commit 4a49121409
3 changed files with 8 additions and 0 deletions
+2
View File
@@ -19,6 +19,7 @@ server {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Authorization $http_authorization;
proxy_cache_bypass $http_upgrade;
proxy_connect_timeout 10s;
@@ -33,6 +34,7 @@ server {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cache_bypass $http_upgrade;
proxy_connect_timeout 10s;
proxy_send_timeout 650s;