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

46 lines
1.2 KiB
Plaintext
Raw Permalink 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;
2021-05-06 15:40:40 +00:00
proxy_set_header X-Real-IP $remote_addr;
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }};
2021-05-06 15:40:40 +00:00
{% if access_list_id > 0 %}
{% if access_list.items.length > 0 %}
# Authorization
auth_basic "Authorization required";
auth_basic_user_file /data/access/{{ access_list_id }};
2021-05-06 18:48:38 +00:00
2021-05-06 15:40:40 +00:00
{{ access_list.passauth }}
{% endif %}
2021-05-06 18:48:38 +00:00
2021-05-06 15:40:40 +00:00
# Access Rules
{% for client in access_list.clients %}
{{- client.rule -}};
{% endfor %}deny all;
2021-05-06 18:48:38 +00:00
2021-05-06 15:40:40 +00:00
# Access checks must...
{% if access_list.satisfy %}
{{ access_list.satisfy }};
{% endif %}
2021-05-06 18:48:38 +00:00
2021-05-06 15:40:40 +00:00
{% endif %}
{% include "_assets.conf" %}
{% include "_exploits.conf" %}
2021-05-06 15:40:40 +00:00
{% include "_forced_ssl.conf" %}
{% include "_hsts.conf" %}
{% if allow_websocket_upgrade == 1 or allow_websocket_upgrade == true %}
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
{% endif %}
{{ advanced_config }}
2019-03-04 22:25:12 +00:00
}