Hi,
Could somebody clarify How to get certificate from Lets’ encrypt?
As I understand letsencrypt script should creates folder under WEBROOT:
/var/www/my_site/html/.well-known
/webroot - but real HTTPDOC is here,
and when script try to access http://mysite.com/.well-known - directory it’s “403 Forbidden”
I see for Apache solution is:
Add “RewriteRule ^(.well-known/.*)$ $1 [L]” as the first rewrite rule in the root htaccess and the app/.htaccess
What do I have to do NGINX ?
Thank you.