我是靠谱客的博主 可靠发箍,最近开发中收集的这篇文章主要介绍wampserver 搭建https服务器教程,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我的电脑环境:

本机IP:192.168.1.104

wamp环境:D:wamp

u=1340460771,3577675893&fm=170&s=9AA87A236CF05A903A8841D4010050A2&w=616&h=314&img.JPEG

配置过程如下

一、设置环境变量

1、管理员权限运行CMD(快捷键win+r,输入cmd),cd D:wampbinapacheApache2.4.9conf

2、set OPENSSL_CONF=..confopenssl.cnf

二、生成server.key

cd D:wampbinapacheApache2.4.9bin

openssl genrsa 1024>server.key

三、生成server.csr

openssl req -new -key server.key > server.csr

然后依次输入CN、SH、SH、直接回车、直接回车、192.168.1.104、随意输入一个邮箱 、直接回车、直接回车

注意:其中的Common Name只能输入域名或IP:192.168.1.104

Common Name 必须和 httpd.conf 中 server name 必须一致, 否则 apache 不能启动(启动 apache 时错误提示为: server RSA certificate CommonName (CN) `Kedou’ does NOT match server name!? )

最后的密码和公司名称可以为空

u=4082240788,3127287578&fm=170&s=A572E2225BBCB7C84E59D00B0000E0C2&w=640&h=413&img.JPEG

操作截图

四、生成server.crt

openssl req -x509 -days 365 -key server.key -in server.csr > server.crt

在D:wampbinapacheApache2.4.9bin把 server.crt、server.csr、server.key

三个文件复制到D:wampbinapacheApache2.4.9conf 下

五、配置httpd:

打开'D:wampbinapacheApache2.4.9confhttpd.conf' 取消注释

Include conf/extra/httpd-ssl.conf

LoadModule ssl_module modules/mod_ssl.so

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so

六、配置ssl:

打开D:wampbinapacheApache2.4.9confextrahttpd-ssl.conf

"SSLCertificateKeyFile…"这行改成

SSLCertificateKeyFile "D:/wamp/bin/apache/apache2.4.9/conf/server.key"

SSLSessionCache这行改成

SSLSessionCache "shmcb:D:/wamp/bin/apache/apache2.4.9/logs/ssl_scache(512000)"

修改DocumentRoot 为DocumentRoot "D:/wamp/www/"

ServerName 192.168.1.104

ErrorLog "D:/wamp/bin/apache/apache2.4.9/logs/error.log"

TransferLog "D:/wamp/bin/apache/apache2.4.9/logs/access.log"

SSLEngine on

SSLCertificateFile "D:/wamp/bin/apache/apache2.4.9/conf/server.crt"

SSLCertificateKeyFile "D:/wamp/bin/apache/apache2.4.9/conf/server.key

七、在D:/wamp/www/ 下新建index.php

写入代码

phpinfo();

?>

八、重启wampserver。浏览器输入:https://192.168.1.104/index.php

u=494171036,3743562189&fm=170&s=D51049398ACA444904583DDD0300C0A0&w=640&h=286&img.JPEG

访问截图

转载于:https://my.oschina.net/u/2954149/blog/1790766

最后

以上就是可靠发箍为你收集整理的wampserver 搭建https服务器教程的全部内容,希望文章能够帮你解决wampserver 搭建https服务器教程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部