assist bss
New Pleskian
Environment: Plesk Onyx 17.8.11 Update #54
OS: Debian 8.11 64bit
In order to exclude problem with letsencrypt, I just created .well-known/acme-challenge/index.html.
If I try to access from browser I get 403 forbidden
The problem is not related to permission or nginx directive, indeed if I just rename acme-challenge to anything else I can reach index.html from browser. To be clearer:
mydomain.com/.well-known/acme2-challenge works
mydomain.com/.well-known/acme-challenge doesn't
I can just access to everything inside .well-known except acme-challenge folder.
Nginx directives related to .well-known/acme-challenge is just ignored
Here is my nginx directives configuration:
location ~ /.well-known {
allow all;
}
Also tried
location ~ /.well-known/acme-challenge {
allow all;
}
OS: Debian 8.11 64bit
In order to exclude problem with letsencrypt, I just created .well-known/acme-challenge/index.html.
If I try to access from browser I get 403 forbidden
The problem is not related to permission or nginx directive, indeed if I just rename acme-challenge to anything else I can reach index.html from browser. To be clearer:
mydomain.com/.well-known/acme2-challenge works
mydomain.com/.well-known/acme-challenge doesn't
I can just access to everything inside .well-known except acme-challenge folder.
Nginx directives related to .well-known/acme-challenge is just ignored
Here is my nginx directives configuration:
location ~ /.well-known {
allow all;
}
Also tried
location ~ /.well-known/acme-challenge {
allow all;
}