fix(auth): oidc redirect does not respect https protocol (#1763)

This commit is contained in:
Meier Lukas
2024-12-24 14:15:34 +01:00
committed by GitHub
parent e220087e96
commit 0336803550
5 changed files with 20 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ http {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
}
}
}