apache配置https
apache 要配置https需要安装mod_ssl模块。centos下:
yum install mod_ssl
mod_ssl自带了一个默认的https证书,如果要配置自己的证书,编辑/etc/httpd/conf.d/ssl.conf文件
需要配置的是已下三项:
SSLCertificateFile /证书文件(.crt)路径/
SSLCertificateKeyFile /私钥文件(.key)路径/
SSLCertificateChainFile /中级ca证书路径/
配置好之后重启apache就可以使用https了
如果https的端口不是默认的端口,需要修改 <VirtualHost *:443>
改成你的端口就可以了