mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
8 lines
321 B
Plaintext
8 lines
321 B
Plaintext
|
location {{ path }} {
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-Scheme $scheme;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }};
|
||
|
{{ advanced_config }}
|
||
|
}
|