I have followed the steps in https://www.digitalocean.com/community/tutorials/how-to-acquire-a-let-s-encrypt-certificate-using-dns-validation-with-acme-dns-certbot-on-ubuntu-18-04
After installing dns validated ssl, my site failed to load! looking for fix. earlier my site has worked fine
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Issue is, database not started, after starting manually works like gem
Hello @ksstage
In addition to what’s already been mentioned, you can check if the DNS of the domain name is pointed correctly, both the www and non-www records.
You can examine the server logs as per Bobby’s advise as this will provide some information on what’s going on with the website requests.
Regards
Hi there,
Are you using Nginx or Apache?
I would recommend a few things:
/var/logs/nginx/error.log
or for Apache:/var/logs/apache2/error.log
systemctl status nginx
orsystemctl status apache2
nginx -t
orapachectl -t
Depending on which one you are using, I would also suggest following the steps here:
How To Troubleshoot Common Nginx Errors
How To Troubleshoot Common Apache Errors
Feel free to share some of the output of the commands here so I can advise you further!
Best,
Bobby