Hello 
If you are using the docker extension you will not be able to issue certificates. The latest update of the lets encrypt extension tries to solve this problem of having custom configurations on your vhost but using lets encrypt for securing domains.
But unfortunately it does not work. They added the following parts to each vhost.conf:
#extension letsencrypt begin
location /.well-known/acme-challenge/ {
root /var/www/vhosts/default/htdocs;
...
The solution for the problem is to use a ^~ inside the location. [1]
#extension letsencrypt begin
location ^~ /.well-known/acme-challenge/ {
root /var/www/vhosts/default/htdocs;
...
It would be great if this issue will be fixed fast because I cannot really use plesk until it is fixed.
Cheers,
dray
If you are using the docker extension you will not be able to issue certificates. The latest update of the lets encrypt extension tries to solve this problem of having custom configurations on your vhost but using lets encrypt for securing domains.
But unfortunately it does not work. They added the following parts to each vhost.conf:
#extension letsencrypt begin
location /.well-known/acme-challenge/ {
root /var/www/vhosts/default/htdocs;
...
The solution for the problem is to use a ^~ inside the location. [1]
#extension letsencrypt begin
location ^~ /.well-known/acme-challenge/ {
root /var/www/vhosts/default/htdocs;
...
It would be great if this issue will be fixed fast because I cannot really use plesk until it is fixed.
Cheers,
dray