Double quotes not needed for nginx config.

master
wikt0r 2018-06-23 16:25:16 +02:00
parent 114035e563
commit 448c6488d3
1 changed files with 1 additions and 1 deletions

@ -23,7 +23,7 @@ http {
...
server {
...
location ~ "^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)$" {
location ~ ^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)$ {
default_type text/plain;
return 200 "$1.6fXAG9VyG0IahirPEU2ZerUtItW2DHzDzD9wZaEKpqd";
}