搭建单向HTTPS

Posted 懒牛拉车

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建单向HTTPS相关的知识,希望对你有一定的参考价值。

//参考网址:https://blog.csdn.net/haolipengzhanshen/article/details/51278262


//打开CMD窗口 cd C:\wamp\bin\apache\Apache2.4.9\bin //设置环境变量 set OPENSSL_CONF=..\conf\openssl.cnf //生成server.key openssl genrsa 1024>server.key //生成server.csr openssl req -new -key server.key > server.csr //需要用户输入国家代码之类的信息: //注意:其中的Common Name只能输入域名(www.oa.com)或IP:192.168.1.103 CN—ZJ—HZ—Relay2—OA[email protected] //生成server.crt openssl req -x509 -days 365 -key server.key -in server.csr > server.crt //在bin 目录下,找到 server.crt server.csr server.key 复制到Apache的conf目录下 //配置:C:\wamp\bin\apache\Apache2.4.9\conf\httpd.conf,取消注释: Include conf/extra/httpd-ssl.conf LoadModule ssl_module modules/mod_ssl.so //配置:C:\wamp\bin\apache\Apache2.4.9\conf\extra\httpd-ssl.conf SSLCertificateKeyFile “C:/wamp/bin/apache/apache2.4.9/conf/server.key” SSLSessionCache “shmcb:c:/wamp/bin/apache/apache2.4.9/logs/ssl_scache(512000)//配置vhost文件 <VirtualHost *:443> DocumentRoot "D:\wamp\www\www.newdefend.com" ServerName https://newdefend.dv SSLEngine on SSLCertificateFile "D:/wamp/bin/apache/apache2.4.9/conf/server.crt" SSLCertificateKeyFile "D:/wamp/bin/apache/apache2.4.9/conf/server.key" </VirtualHost> //重启wamp完事

以上是关于搭建单向HTTPS的主要内容,如果未能解决你的问题,请参考以下文章

Linux apache自建证书搭建https

C语言反转单向链表的代码

图像分类基于PyTorch搭建LSTM实现MNIST手写数字体识别(单向LSTM,附完整代码和数据集)

android 搭建https Server

oracle ogg 单机环境单向复制搭建

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段