From e0b098f9512191313791070bc084f691bd095f41 Mon Sep 17 00:00:00 2001 From: Ric Harvey Date: Fri, 22 Jul 2016 16:04:46 +0100 Subject: [PATCH] tweak to nginx conf to allow letsencrypt to connect in --- conf/nginx-site-ssl.conf | 5 +++++ conf/nginx-site.conf | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/conf/nginx-site-ssl.conf b/conf/nginx-site-ssl.conf index ad8c122..d2ef551 100644 --- a/conf/nginx-site-ssl.conf +++ b/conf/nginx-site-ssl.conf @@ -60,4 +60,9 @@ server { deny all; } + location ^~ /.well-known { + allow all; + auth_basic off; + } + } diff --git a/conf/nginx-site.conf b/conf/nginx-site.conf index b04869f..bd2d64d 100644 --- a/conf/nginx-site.conf +++ b/conf/nginx-site.conf @@ -54,4 +54,9 @@ server { deny all; } + location ^~ /.well-known { + allow all; + auth_basic off; + } + }