您当前的位置:首页 > 计算机 > 服务器 > Apache

Appserv(Apache) 配置ssl证书

时间:08-08来源:作者:点击数:

一:打开httpd.conf文件,移除注释的行:

Include conf/extra/httpd-ahssl.conf

LoadModule ssl_module modules/mod_ssl.so

ServerName localhost:80

二:放置SSl证书

选择Apache

划掉的是域名,将其crt和key放入和httpd.conf同级目录下的ssl文件夹中,并且改为server.crt和server.key

二:打开httpd-ahssl.conf(在httpd.conf同级目录下的extra文件夹中),修改如下:

<VirtualHost _default_:443>

SSLEngine on

ServerName localhost:443 #主要修改一下这里

SSLCertificateFile "${SRVROOT}/conf/ssl/server.crt"

SSLCertificateKeyFile "${SRVROOT}/conf/ssl/server.key"

DocumentRoot "C:/AppServ/www"

# DocumentRoot access handled globally in httpd.conf

CustomLog "${SRVROOT}/logs/ssl_request.log" \

"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

<Directory "C:/AppServ/www">

Options Indexes Includes FollowSymLinks

AllowOverride All

Require all granted

</Directory>

</virtualhost>

重启apache

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门