spee.ch/docs/setup/conf/nginx/letsencrypt.conf

9 lines
179 B
Text
Raw Normal View History

2018-11-09 22:36:34 +01:00
#/etc/nginx/snippets/letsencrypt.conf
location ^~ /.well-known/acme-challenge/ {
allow all;
root /var/lib/letsencrypt/;
default_type "text/plain";
try_files $uri =404;
}