SSL Certifiacte

0

Earlier we have Lets Encrypt SSL. We have purchased a new 1 year ssl for our site. Now nobody able to figure out, how to remove lets encrypt and replace with new alpha SSL.

gefragt vor 2 Jahren304 Aufrufe
1 Antwort
0

Hello

When you create Lets encrypt Certificate from the Web servers Ngnix/Apache it will update the configuration files for the Website you have for example **some-website.conf **file, So how to update the Certificate inside the Webserver configuration, I do not have information about the Nginx or Apache but you have the information below, Apache SSL Configuration:

  • Copy the SSL Certificate to the server including the private key
  • Check the Configuration file of your website and update the configuration as below
<VirtualHost 192.168.0.1:443>
    DocumentRoot /var/www/html2
    ServerName www.yourdomain.com
        SSLEngine on
        SSLCertificateFile /path/to/your_domain_name.crt
        SSLCertificateKeyFile /path/to/your_private.key
        SSLCertificateChainFile /path/to/DigiCertCA.crt
    </VirtualHost>
  • Once done save the file and run a command apachectl configtest to check your configuration is correct.
  • then restart service apache2 restart

Nginx SSL Configuration:

`

server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/ssl-bundle.crt;
ssl_certificate_key /path/to/your_private.key;
root /path/to/webroot;
server_name your_domain.com;
}
access_log /var/log/nginx/nginx.vhost.access.log;
error_log /var/log/nginx/nginx.vhost.error.log;
location / {
root /var/www/;
root  /home/www/public_html/your.domain.com/public/;
index index.html;
}
}

`

profile picture
GK
beantwortet vor 2 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen