开启https加密访问
一、到阿里云申请免费证书,然后下载对于的证书文件。
二、打开服务器上Apache安装目录中conf目录下的httpd.conf配置文件,找到如下代码,没有的添加,有#号的去掉。
Include conf/extra/httpd-ssl.conf
三、打开上面路径中的httpd-ssl.conf文件,配置ssl。找到如下代码,没有的添加,有#号的去掉。
Listen 443<VirtualHost _default_:443>DocumentRoot "/alidata/www/**"//自己的网站目录ServerName www.daimadog.com:443ServerAdmin you@daimadog.comErrorLog "/logs/error_log"//日志目录,自己定义TransferLog "/logs/access_log"SSLEngine onSSLCertificateFile cert/public.pemSSLCertificateKeyFile cert/214409704780492.keySSLCertificateChainFile cert/chain.pem</VirtualHost>
四、上传证书文件至Apache安装目录下的cert目录下,没有的自行新建。
五、重启Apache服务,使用https访问测试。
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/242310.html