8 lines
179 B
Text
8 lines
179 B
Text
|
location ^~ /.well-known/acme-challenge/ {
|
||
|
proxy_pass https://{{ acme_server }}.{{ http_domain_internal }}:443;
|
||
|
}
|
||
|
|
||
|
location = /.well-known/acme-challenge/ {
|
||
|
return 404;
|
||
|
}
|