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.

質問済み 2年前304ビュー
1回答
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
回答済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ