From dc7411cfa6ced1d657c9d1cb365d4d72c76869d8 Mon Sep 17 00:00:00 2001 From: Deni Date: Mon, 6 Nov 2017 08:20:33 +0100 Subject: [PATCH] Letsencrypt support Whitelisted .well-known folder to enable Letsencrypt SSL certificate issuing. --- htdocs/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/.htaccess b/htdocs/.htaccess index fe3141e..a3a8076 100644 --- a/htdocs/.htaccess +++ b/htdocs/.htaccess @@ -1,6 +1,6 @@ RewriteEngine on #RewriteBase / -RewriteCond $1 !^(index\.php|static|favicon\.ico|robots\.txt|sitemap.xml|google(.+)\.html) +RewriteCond $1 !^(index\.php|\.well-known|static|favicon\.ico|robots\.txt|sitemap.xml|google(.+)\.html) RewriteRule ^(.*)$ index.php?/$1 [QSA,L] # basic auth for PHP with fastcgi