mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-05-18 07:40:35 +00:00
52c32b473d
When an access list was associated with a template which had users (items) but no rules (clients), a `deny all` directive was inserted to the config. This resulted in all requests, including those with valid credentials, being rejected due to the lack of any `allow` directive. This commit wraps the access rule configuration inside of an if block, so the `deny all;` directive is only present when at least one rule is configured.
28 lines
761 B
Plaintext
28 lines
761 B
Plaintext
{% 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 }};
|
|
|
|
{% if access_list.pass_auth == 0 or access_list.pass_auth == false %}
|
|
proxy_set_header Authorization "";
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% if access_list.clients.length > 0 %}
|
|
# Access Rules: {{ access_list.clients | size }} total
|
|
{% for client in access_list.clients %}
|
|
{{client | nginxAccessRule}}
|
|
{% endfor %}
|
|
deny all;
|
|
{% endif %}
|
|
|
|
# Access checks must...
|
|
{% if access_list.satisfy_any == 1 or access_list.satisfy_any == true %}
|
|
satisfy any;
|
|
{% else %}
|
|
satisfy all;
|
|
{% endif %}
|
|
{% endif %}
|