Files
dockerserver-scott/reverseproxy/nginxproxymanager/snippets/authelia-proxy.conf
2024-04-07 08:14:38 -05:00

9 lines
327 B
Plaintext
Executable File

## Headers
proxy_set_header Host $host;
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Uri $request_uri;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-For $remote_addr;