随着国内各大网站纷纷开启全站 HTTPS 时代, HTTPS 已不再是支付等敏感操作过程的专属,开启 HTTPS 对于个人网站或者小型网站也不再遥不可及。 今天博主就以自己的网站 www.rapospectre.com 为例叙述一下为自己网站点亮 HTTPS 小绿锁的过程。
HTTPS ( Hypertext Transfer Protocol over Secure Socket Layer ),是以安全为目标的 HTTP 通道,简单讲是 HTTP 的安全版。即 HTTP 下加入 SSL 层, HTTPS 的安全基础是 SSL ,因此加密的详细内容就需要 SSL 。 它是一个 URI scheme ( 抽象标识符体系 ),句法类同 http :体系。用于安全的 HTTP 数据传输。 https:URL 表明它使用了 HTTP ,但 HTTPS 存在不同于 HTTP 的默认端口及一个加密 /身份验证层(在 HTTP 与 TCP 之间)。这个系统的最初研发由网景公司进行,提供了身份验证与加密通讯方法,现在它被广泛用于万维网上安全敏感的通讯,例如交易支付方面。
HTTP 超文本传输协议 ( HTTP-Hypertext transfer protocol ) 是一种详细规定了浏览器和万维网服务器之间互相通信的规则,通过因特网传送万维网文档的数据传送协议。
从概念里可以看到,要开启 HTTPS 至关重要的一点就是 ssl 层的身份验证,而身份验证需要用到 ssl 证书,以前少有免费 ssl 证书,所以小站基本不会选择 https ,而现在网上提供个人免费 ssl 证书的机构越来越多,这使得免费升级站点为 https 成为可能。
网上已经有不少机构提供个人免费 ssl 证书,有效期几个月到几年不等,博主使用的是 StartSSL, 申请成功后有效期 3 年,到期后可免费续租。 具体申请过程不复杂,注册后根据提示验证网站 + 生成证书即可,如果不清楚可以 Google 一下。
要注意 StartSSL 验证网站拥有者时是给域名所有者的邮箱发验证邮件,如果域名开启了隐私保护请暂时关闭。
然后在自己服务器中生成 SSL 证书的 csr ,记住生成输入的秘密,之后要用到:
openssl req -new -sha256 -key rapospectre.com_secure.key -out rapospectre.com.csr
假设以上文件生成在 /var/tmp
文件夹下
在 StartSSL 填写 csr 文件内容,生成 SSL 证书并下载, 生成成果后如图:
点击 Retrieve 下载证书,解压缩后包含各种服务器的 crt ,博主使用 nginx 做反代,所以选择 nginxserver 解压缩后得到 www.rapospectre.com_bundle.crt
将此文件上传到服务器,假设传到 /var/tmp/
文件夹
以 nginx 为例,打开 /etc/nginx/nginx.conf
,加入配置:
server {
listen 443 ssl;
ssl_certificate /var/tmp/www.rapospectre.com_bundle.crt;
ssl_certificate_key /var/tmp/rapospectre.com_secure.key;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#选择特定的加密方式, 避免已知的漏洞
ssl_ciphers 'kEECDH+ECDSA+AES128 kEECDH+ECDSA+AES256 kEECDH+AES128 kEECDH+AES256 kEDH+AES128 kEDH+AES256 DES-CBC3-SHA +SHA !aNULL !eNULL !LOW !MD5 !EXP !DSS !PSK !SRP !kECDH !CAMELLIA !RC4 !SEED';
#让浏览器记住直接访问 https 的网址, 不再去 http 重定向。
add_header Strict-Transport-Security 'max-age=31536000; preload';
add_header X-Frame-Options DENY;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
keepalive_timeout 70;
ssl_dhparam /var/tmp/dhparam2048.pem;
#禁止服务器自动解析资源类型
add_header X-Content-Type-Options nosniff;
#防 XSS 攻擊
add_header X-Xss-Protection 1;
server_name www.rapospectre.com rapospectre.com;
在之前的 80 端口进行重定向配置:
server {
listen 80;
server_name rapospectre.com www.rapospectre.com;
return 301 https://www.rapospectre.com$request_uri;
}
将网站所有以 http 方式获取的资源全部改为 https 方式或自动方式获取, eg :
<script src="http://xx.cdn.com/jquery.js"></script>
改为
<script src="https://xx.cdn.com/jquery.js"></script>
或
<script src="//xx.cdn.com/jquery.js"></script>
重启服务器,提示输入之前生成 csr 的密码,输入密码,重启成功,访问 https://www.rapospectre.com 可以看到 HTTPS 已经正常工作!
顺手来一发 SSLLABS测试, wtf 只有 F ?
看图发现因为
This server is vulnerable to the OpenSSL Padding Oracle vulunerability ( CVE-2016-2107 )
原来是 OpenSSL 漏洞的锅,升级 OpenSSL 到 1.0.2h 版 ( 后续版本应该也可以,博主一开始升级到了最新的 1.1.0a 结果服务器挂了 ) 即可修复漏洞:
Fix OpenSSL Padding Oracle vulnerability (CVE-2016-2107) - Ubuntu 14.04
# Based on http://fearby.com/article/update-openssl-on-a-digital-ocean-vm/
$ apt-get update
$ apt-get dist-upgrade
$ wget ftp://ftp.openssl.org/source/old/1.0.2/openssl-1.0.2h.tar.gz
$ tar -xvzf openssl-1.0.2h.tar.gz
$ cd openssl-1.0.2h
$ ./config --prefix=/usr/
$ make depend
$ sudo make install
$ openssl version
# OpenSSL 1.0.2h 3 May 2016
# now restart your nginx or other server
$ nginx -s reload
开启 http2 , nginx 在 1.9.5 以后的版本才开始支持 http2 ,之前一直使用的是 spdy 而 ubuntu 自带的 nginx 是 1.4.6 的古董, 所以需要重新编译安装新版的 nginx ,博主选择了安装最新的 nginx 1.11.4:
/var/tmp/nginx
:wget http://nginx.org/download/nginx-1.11.4.tar.gz
tar zxvf nginx-1.11.4.tar.gz
cd nginx-1.2.5
nginx -V
上面的命令将输出类似如下信息:
--with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module
我们在后面加上 http2 模块与 上一步中 openssl 源码( 是源码路径不是安装 )路径:
--with-http_v2_module --with-openssl=/var/tmp/ssl/openssl-1.0.2h
注意,如果以上信息内包含 --with-spdy_module
请去除, nginx 1.9.5 之后已弃用 spdy
./configure --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module --with-http_v2_module --with-openssl=/var/tmp/ssl/openssl-1.0.2h
configure 时可能遇到的几个错误:
apt-get install libxml2 libxml2-dev libxslt-dev
apt-get install libgd2-xpm-dev
apt-get install geoip-database libgeoip-dev
apt-get install libpcre3 libpcre3-dev
再次执行 configure 命令, 然后make && make install
。 编译好以后 objs 目录下多出一个 nginx 文件,用它替换旧的 nginx 文件:
mv /usr/sbin/nginx /usr/sbin/nginx-backup
cp objs/nginx /usr/sbin/nginx
执行 /usr/sbin/nginx -t 命令检查配置文件返回下面的信息:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
表示 nginx 升级成功,修改 nginx 配置,加入 http2 支持:
listen 443 ssl http2 fastopen=3 reuseport;
重启 nginx 访问正常后再测一发:
搞定,个人网站加入 HTTPS 并且 SSLABS 评分 A+ 。 快来试试吧~
( 博主网站图片上传到七牛,而七牛免费似乎账户不支持 https 链接,所以有些文章比如说这篇会提示网页内有不安全的内容 )
原文地址: https://www.rapospectre.com/blog/https-deploy-guide
作者:rapospectre
1
EchoChan 2016-09-27 21:10:17 +08:00
赞!
另外,微博图床支持 https 。 |
2
isCyan 2016-09-27 21:16:00 +08:00
|
3
lfzyx 2016-09-27 21:16:28 +08:00 1
|
4
yoa1q7y 2016-09-27 21:25:41 +08:00
|
5
selinaspy 2016-09-27 21:27:58 +08:00
startssl 要被 firefox 不信任了,可以撸免费的野卡证书~
|
6
vivagonna 2016-09-27 21:30:40 +08:00 via Android
噗~ startssl 和 wosign 马上要被火狐干了,还是换一家吧,不然小绿锁没有,不信任警告倒是有了 lol
|
8
lightening 2016-09-27 21:49:55 +08:00
@neilpang 的 https://github.com/Neilpang/acme.sh 申请 Let's Encrypt 证书很好用。
如果用 Docker ,也可以用我的 https://github.com/SteveLTN/https-portal 。 |
9
vivagonna 2016-09-27 22:01:51 +08:00 via Android
用 Let's Encrypt 的 v 友有没有遇到这个问题: cron 定期 renew 证书总是失败,手动 renew 没问题,也检查过不是权限问题,命令没写错,一直没搞明白为什么
|
11
neilp 2016-09-27 22:17:34 +08:00
|
16
phithon 2016-09-27 22:48:25 +08:00
https://www.leavesongs.com/SHARE/lets-encrypt-guide.html
还是用 let's encrypt 吧。。 |
19
HmyBmny 2016-09-27 23:06:22 +08:00
前提是你要有服务器啊,没有服务器的这个方法就不实用了。 CloudFlare 提供免费的, GitHub Pages 就能使用,参考我的博客 https://www.hmybmny.com/ , 代码在这里 https://github.com/HmyBmny/hmybmny.github.io
|
20
Adven 2016-09-27 23:21:44 +08:00
|
22
zmr90 2016-09-28 00:16:56 +08:00
https://www.zmrbk.com/post-3207.html 那我就说下免费获得 COMODO Positive SSL 以及安装的姿势吧,科莫多的证书稍微要好点
|
24
imnpc 2016-09-28 07:32:47 +08:00
七牛可以配置 SSL 不过配置审核和生效太慢
又拍的可以自己配立即生效 |
25
ragnaroks 2016-09-28 10:09:07 +08:00
比起 let's encrypt,我更愿意用收费野卡
|
26
rapospectre OP @imnpc 在哪里配置呐?我木有找到七牛的,我去看看又拍。谢谢哈
|
27
rapospectre OP @EchoChan 谢谢支持呀
|
28
rapospectre OP @HmyBmny 之前用过一段时间,感觉解析国内地址有些慢就没再用啦
|
29
HmyBmny 2016-09-28 11:59:40 +08:00
@rapospectre 确实有点慢。
|
30
techmoe 2016-09-28 12:36:53 +08:00
不得不说什么 WoSign 和 StartSSL 最近一直在风口浪尖上
|
31
adfsadfssfd 2016-09-28 13:02:49 +08:00
还用 wosign/startssl 的不是 SB 就是托....
|
32
imnpc 2016-09-28 13:07:18 +08:00
@rapospectre 七牛好像要新开设专门的 https 才可以
|
33
chenxy 2016-09-28 13:12:31 +08:00
赞,有时间试下.
|
34
Spectre 2016-09-28 15:24:30 +08:00
卧槽幽鬼!
|
35
rapospectre OP @Spectre 哈哈幽鬼!天涯到处有刀友啊
|
36
wclebb 2016-09-28 20:51:21 +08:00
难道不是叫战斗服吗?……
|
37
Spectre 2016-09-29 14:03:13 +08:00
@rapospectre 看 ID 就知道了!
|
38
5177748 2016-09-29 16:04:15 +08:00
沃通怎么了?谁能告诉我啊。。。。。
|
39
qq7171891 2016-11-14 12:22:34 +08:00
写得真棒!
|