Answer the question
In order to leave comments, you need to log in
What should be done when moving a site to HTTPS?
Good afternoon. I never asked this question, but an order came at work to transfer the site to the HTTPS protocol.
Googling, I realized that I need to buy an SSL certificate for the site.
But there were questions
1) Will the server be additionally loaded if the site works via HTTPS
2) Do I need to configure it? If so, where. Apache / IIS or this setting at the domain level?
Answer the question
In order to leave comments, you need to log in
To transfer the site to https, it all comes down to copying the two files key.pem and certificate.cer and adding them to the settings. For Apache:
<VirtualHost *:443>
ServerName mysite.com
SSLEngine on
SSLCertificateFile /home/mysite/certificate.cer
SSLCertificateKeyFile /home/mysite/key.pem
</VirtualHost>
1) Look at the Hosting and Domain Registrar what offers they have for SSL certificates, maybe there is a free one or you can buy it
2) Yes, you need to configure it all depends on what you are using
If you don't have a selling website, LE is enough. If selling - buy an OV-certificate from large suppliers, it is more expensive, the issuance is more difficult, but more prestigious :) Alexander
has already written about setting up Apache . You can also add the following:
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite kEECDH+AES:kEDH+AES:kRSA+AES:!aNULL:!DSS:!SSLv2
SSLHonorCipherOrder on
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question