Hi, I already have installed a SSL certificate last year on a Ubuntu server. Now the renewal of the certificate issuing is taking forever, so I am thinking to install a temporary Let’s Encrypt SSL certificate for the time being.
Even though there is already an SSL certificate installed manually in the virtual host conf,…
<VirtualHost *:443>
ServerName mydomain.sg
ServerAdmin admin@mydomain.sg
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /home/keys/mydomain.sg.crt
SSLCertificateKeyFile /home/keys/mydomain.sg.key
SSLCertificateChainFile /home/keys/intermediate.crt
Can I still follow this tutorial?https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-18-04
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.
Hello, @chris4ever
In order to renew the SSL you can replace the files listed in the virtual host:
You can also install a Let’s Encrypt for the domain name by following the tutorial, this is totally up to you.
Regards, Alex