On a website that is password protected using Apache basic authentication to auto-renew SSL we need to make the .well-known folder to be accessible without password.
Password protected Apache website:
AuthType Basic
AuthName "Password Protected"
AuthUserFile /etc/apache2/htpaswd
Require valid-user
Allow .well-known without password:
Require all granted



