码迷,mamicode.com
首页 > 其他好文 > 详细

centos7的ssl

时间:2015-10-02 06:44:20      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:centos7 ssl

在虚拟机中验证可行,分享一下。

yum list installed | grep ssl
mod_ssl.x86_64 解:这个模块将Apache和mod联系在一起,如果没有需要安装mod_ssl
openssl.x86_64

cd /etc/httpd/conf
openssl genrsa -out localhost.key 1024建立密钥
openssl req -new -key localhost.key -out localhost.csr建立公钥
openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt建立服务器证书
vim /etc/httpd/conf.d/ssl.conf修改配置文件
LoadModule ssl_module modules/mod_ssl.so新增
DocumentRoot "/www/gpic/"修改,根据实际情况设定
ServerName www.gpic.com:443修改,根据实际情况设定
SSLCertificateFile /etc/httpd/conf/localhost.crt修改,就是之前步骤生成的文件,
SSLCertificateKeyFile /etc/httpd/conf/localhost.key修改,就是之前步骤生成的文件,


本文出自 “做最好的自己” 博客,请务必保留此出处http://mm800805.blog.51cto.com/617733/1699838

centos7的ssl

标签:centos7 ssl

原文地址:http://mm800805.blog.51cto.com/617733/1699838

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!