Add directive auth_basic off for nginx configuration
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Eric Morino 2020-12-24 10:03:43 +01:00
parent dd8b989bbe
commit feda9a63d8
1 changed files with 1 additions and 0 deletions

View File

@ -5,5 +5,6 @@ location ~ /.well-known/acme-challenge {
alias {{ evoacme_acme_dir }}/.well-known/acme-challenge; alias {{ evoacme_acme_dir }}/.well-known/acme-challenge;
{% endif %} {% endif %}
try_files $uri =404; try_files $uri =404;
auth_basic off;
allow all; allow all;
} }