Guess what ... If people manually tweaked their nginx.conf to enable gzip globally, this will break cert renewal ..

This commit is contained in:
Alexandre Aubin 2020-12-11 20:40:45 +01:00
parent 43cc1d890e
commit c5d06af20e

View file

@ -2,4 +2,5 @@ location ^~ '/.well-known/acme-challenge/'
{
default_type "text/plain";
alias /tmp/acme-challenge-public/;
gzip off;
}