mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-22 21:08:13 -05: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 }}
|
||
|
}
|