2016-09-27 19:33:52 +02:00
|
|
|
# Include this one inside a "server" directive listening on port 80, this way:
|
2016-10-03 16:48:23 +02:00
|
|
|
# include /etc/nginx/snippets/letsencrypt-proxy.conf;
|
2016-04-27 18:37:24 +02:00
|
|
|
location ^~ /.well-known/acme-challenge {
|
2016-10-03 16:48:23 +02:00
|
|
|
proxy_pass http://127.0.0.1:{{ letsencrypt_acme_standalone_port | default('4402') }}/.well-known/acme-challenge;
|
2016-04-27 18:37:24 +02:00
|
|
|
access_log /var/log/nginx/letsencrypt_acmetool_access.log;
|
|
|
|
error_log /var/log/nginx/letsencrypt_acmetool_error.log;
|
2016-04-27 13:36:11 +02:00
|
|
|
}
|
2016-04-22 18:55:20 +02:00
|
|
|
|
2016-04-27 13:36:11 +02:00
|
|
|
|