mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-14 16:34:27 +00:00
8 lines
256 B
Plaintext
8 lines
256 B
Plaintext
# Resolve the effective protocol: use X-Forwarded-Proto if set
|
|
# (e.g., from proxies like Cloudflare or AWS)
|
|
# otherwise fall back to the current scheme.
|
|
map $http_x_forwarded_proto $resolved_proto {
|
|
default $scheme;
|
|
~.+ $http_x_forwarded_proto;
|
|
}
|