nginx-proxy-manager/src/backend/templates/_location.conf

10 lines
323 B
Plaintext
Raw Normal View History

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 }}
2019-03-04 22:25:12 +00:00
}