我的博客网站是使用 HTTP 协议的,使用 Google Chrome 浏览器访问就会在地址栏提示不安全。
这让人很不舒服,于是乎,折腾起 HTTPS ...
为什么一般不愿意迁?
迁移到 HTTPS 还是很有必要的
无奈,"要不要迁移到 HTTPS" 的问题,就变成了 "怎么迁移到 HTTPS" 的问题。
申请证书与配置
我的阿里云服务器加了一层 nginx,迁移到 HTTPS 还是挺简单的。
参照的这篇文档,一次性搞定
https://help.aliyun.com/document_detail/98728.html?spm=5176.2020520163.0.0.2c6bizEHizEHt6
主要步骤:
# 开启443端口
# 以下属性中以ssl开头的属性代表与证书配置有关,其他属性请根据自己的需要进行配置。
server {
listen 443 ssl; #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
server_name localhost; #将localhost修改为您证书绑定的域名
root html;
index index.html index.htm;
ssl_certificate cert/domain name.pem; #将domain name.pem替换成您证书的文件名。
ssl_certificate_key cert/domain name.key; #将domain name.key替换成您证书的密钥文件名。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用该协议进行配置。
ssl_prefer_server_ciphers on;
location / {
root html; #站点目录。
index index.html index.htm;
}
}
server {
listen 80;
server_name localhost; #将localhost修改为您证书绑定的域名
rewrite ^(.*)$ https://$host$1 permanent; #将所有http请求通过rewrite重定向到https
location / {
index index.html index.htm;
}
}
PS:
ConstXiong 备案号:苏ICP备16009629号-3