Report this

What is the reason for this report?

How to install a new ssl on Ubuntu to replace existing one?

Posted on May 4, 2021

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.
0

Accepted Answer

Hello, @chris4ever

In order to renew the SSL you can replace the files listed in the virtual host:

SSLCertificateFile /home/keys/mydomain.sg.crt
SSLCertificateKeyFile /home/keys/mydomain.sg.key
SSLCertificateChainFile /home/keys/intermediate.crt

You can also install a Let’s Encrypt for the domain name by following the tutorial, this is totally up to you.

Regards, Alex

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.