From 5662bd16b3df57d39c4ed0b18f8a5722d9cc0650 Mon Sep 17 00:00:00 2001 From: Guillaume Chauvin <{ID}+{username}@users.noreply.github.com> Date: Fri, 12 Apr 2019 20:33:37 +0200 Subject: [PATCH] Fixes #5290 - Allow Certbot http challenge behind basic auth --- server/conf/nginx_vhost.conf.master | 1 + 1 file changed, 1 insertion(+) diff --git a/server/conf/nginx_vhost.conf.master b/server/conf/nginx_vhost.conf.master index bc09c42937..4d6ee600fa 100644 --- a/server/conf/nginx_vhost.conf.master +++ b/server/conf/nginx_vhost.conf.master @@ -143,6 +143,7 @@ server { location ^~ /.well-known/acme-challenge/ { access_log off; log_not_found off; + auth_basic off; root /usr/local/ispconfig/interface/acme/; autoindex off; index index.html; -- GitLab