- 1 关于本教程
- 2 建站必备
- 3 Web服务环境搭建
- 3.1 关于Web服务环境
- 3.2 WAMP集成环境搭建
- 3.3 LANMP集成环境搭建
- 4 云建站
- 5 建站步骤
- 6 伪静态配置
- 6.1 关于伪静态
- 6.2 配置webserver使用静态url功能
- 7 网站部署 HTTPS 协议
网站部署 HTTPS 协议
- 2021-09-29 23:54:14
- admin
- 1940
- 最后编辑:admin 于 2021-09-30 00:49:31
基本概念:
HTTP: 是互联网上应用最为广泛的一种网络协议,是一个客户端和服务器端请求和应答的标准,用于从WWW服务器传输超文本到本地浏览器的传输协议,它可以使浏览器更加高效,使网络传输减少。
HTTPS:是以安全为目标的HTTP通道,简单讲是HTTP的安全版。即HTTP下加入SSL层,HTTPS的安全基础是SSL,因此加密的详细内容就需要SSL。
谷歌、火狐等浏览器厂商也已经扛起HTTPS大旗,对于HTTP站点会提示不安全警告。而且像谷歌、百度等搜索引擎也早已相应HTTPS号召,都声称对HTTPS站点页面友好甚至优先抓取,排名靠前,当然具体实际实施情况就另当别论了。
要让互联网站点都升级到HTTPS协议还需一段时间,但不可否认HTTPS是大势所趋。已过一番折腾,终于将站点升级到https访问。
下图是在部署https之前使用HTTP协议访问效果:
网站环境:
操作系统:centos6.5 x64
web服务:Apache 2.4+
免费证书商家:Let's Encrypt SSL
(参考网络上的教程时,一定要注意环境,我就踩了这个坑。)
操作流程:
1.安装证书
我使用的是Let's Encrypt SSL免费证书,有效期3个月,需要定期更新。( 更多国内外免费SSL证书推荐参考)
下载certbot,并设置权限:
wget https://dl.eff.org/certbot-auto chmod a+x certbot-auto
使用certbot申请安装证书:(如果站点用了百度cdn匀加速,须先关闭。)
./certbot-auto certonly --webroot -w /data/wwwroot/www.chanzhicms.com -d --no-self-upgrade
-w后面是网站的根目录路径,-d后面是申请证书的域名,多个域名的话,在后面继续添加设置多个-d即可。
申请成功后,可以查看到SSL证书的有效截止日期。申请的证书默认存放在 /etc/letsencrypt 目录下。
2.修改Apache配置文件
设置apache的配置文件 /usr/local/apache/conf/httpd.conf,要修改两个地方,找到下面两行将其前面的#去掉即可。
LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf
然后修改/usr/local/apache/conf/extra/httpd-ssl.conf 文件,将里面内容清空,放入下面内容:
Listen 443 AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl SSLCipherSuite EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5 SSLProxyCipherSuite EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5 SSLHonorCipherOrder on SSLProtocol all -SSLv2 -SSLv3 SSLProxyProtocol all -SSLv2 -SSLv3 SSLPassPhraseDialog builtin SSLSessionCache "shmcb:/usr/local/apache/logs/ssl_scache(512000)" SSLSessionCacheTimeout 300 Mutex sysvsem default SSLStrictSNIVHostCheck on
最后修改网站的单独配置文件,/usr/local/apache/conf/vhost/www.chanzhicm.com.conf ,原本只有80端口配置,这里需要我们加上443端口的配置:
<VirtualHost *:80> ServerAdmin admin@linuxeye.com DocumentRoot "/data/wwwroot/www.chanzhicms.com" ServerName www.chanzhicms.com ServerAlias chanzhicms.com ErrorLog "/data/wwwlogs/www.chanzhicms.com_error_apache.log" CustomLog "/data/wwwlogs/www.chanzhicms.com_apache.log" combined <Directory "/data/wwwroot/www.chanzhicms.com"> SetOutputFilter DEFLATE Options FollowSymLinks ExecCGI Require all granted AllowOverride All Order allow,deny Allow from all DirectoryIndex index.html index.php </Directory> </VirtualHost> Listen 443 <VirtualHost *:443> DocumentRoot "/data/wwwroot/www.chanzhicms.com" ServerName www.chanzhicms.com:443 ServerAlias www.chanzhicms.com ErrorLog "/data/wwwlogs/www.chanzhicms.com_error_apache.log" ServerAdmin admin@linuxeye.com SSLEngine on SSLCertificateFile /etc/letsencrypt/live/www.chanzhicms.com/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/www.chanzhicms.com/privkey.pem <Directory "/data/wwwroot/www.chanzhicms.com"> SetOutputFilter DEFLATE Options FollowSymLinks AllowOverride All Order allow,deny Allow from all DirectoryIndex index.html index.php Require all granted </Directory> </VirtualHost>
上面配置中的网站名称、网站路径、证书路径等信息,大家根据自己的具体情况填写。
注意:
这里必须要特别强调一点,因为我的Apache版本是2.4+的,在Directory中,一定要加上一条 Require all granted ,否侧会出现网站HTTP访问正常,但https访问提示 403 forbidden。这条命令是apache2.4新增加的,用以替代allow,deny以及order指令。
最后,重启Apache!重启Apache!重启Apache!
使用https访问网站,查看是否生效。如下图:
证书更新
证书快到期了,我在使用 certbot-auto renew 命令进行证书更新时,提示如下错误:
Attempting to renew cert (www.chanzhicms.com) from /etc/letsencrypt/renewal/www.chanzhicms.com.conf produced an unexpected error: The manual plugin is not working; there may be problems with your existing configuration. The error was: PluginError('An authentication script must be provided with --manual-auth-hook when using the manual plugin non-interactively.',). Skipping. All renewal attempts failed. The following certs could not be renewed: /etc/letsencrypt/live/www.chanzhicms.com/fullchain.pem (failure)
解决方法:
1. 创建手动授权脚本,输入如下命令
vim /etc/letsencrypt/renewal/www.chanzhicms.com.sh
#!/bin/bash echo $CERTBOT_VALIDATION > /path/to/wwwroot/.well-known/acme-challenge/$CERTBOT_TOKEN
其中,/path/to/wwwroot/ 为您域名验证的网站根目录
使脚本可执行:
chmod +x /etc/letsencrypt/renewal/www.chanzhicms.com.sh
2. 带参数执行命令
certbot-auto renew --manual-auth-hook /etc/letsencrypt/renewal/www.chanzhicms.com.sh
3.成功后,检查更新到期日期
./certbot-auto certificates
自动更新
证书到期之前会有邮件提箱,修改订阅邮箱方法:
./certbot-auto update_account --email 963370407@qq.com --no-self-upgrade
上面命令即可将订阅邮箱更新为指定邮箱。
使用crontab自动续期
yum install vixie-cron crontabs //安装Crontab
chkconfig crond on //设为开机自启动
service crond start //启动
/var/spool/cron 这里是所有的自动执行任务的 cron 文件存放位置(root文件)
在/var/spool/cron/root文件里添加:
30 20 1 * * /root/certbot-auto renew --no-self-upgrade
即每月1号晚上8点半更新证书。
service crond restart //重启服务生效
crontab -l //查看crontab定时执行任务列表
小结:
网站升级https其实并不复杂,只是一些细节问题上可能会因环境而异,所以不要盲目地仿照他人操作流程,一定要先看服务器环境。其次,因为https使用443端口,所以服务器防火墙要放开443端口访问,我用的阿里云服务器,还会涉及到安全策略设置,所以在操作时,注意检查端口是否监听。
如果大家在部署https访问网站时遇到其他问题,欢迎留言反馈,我们共同学习交流。