Thank you for the pointer.
Looks like the problem has been resolved. The location needed a trailing “/“
on the path.
location ^~ /.well-known/acme-challenge/ {
allow all;
alias /var/www/certbot/;
try_files $uri =405;
}
John
Working Nigin
Good Day,
Thank you for your suggestion, but I had tried using the alias as well and that
did not work as advertised. The following is the results of using the alias
and “^~”.
I do see some odd behavior.
The following access snippet
2021/03/20 21:44:21 [error] 14#14: *7 open() "/var/www/certbo
Good Day,
I have nginx running in a docker container and configured to use let’s encrypt
for certificates services.
The location redirect to /var/www/certbot from /.well-known/acme-challenge does
not seem to work.
Shown below is the contents of the target location and the contents.
**