Merge pull request #403 from Indemnity83/empty-auth

Don't ask for username/password if none are defined
This commit is contained in:
jc21
2020-05-28 09:18:50 +10:00
committed by GitHub
3 changed files with 8 additions and 6 deletions

View File

@ -23,9 +23,11 @@ server {
location / {
{% 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 }};
{% endif %}
# Access Rules
{% for client in access_list.clients %}