Linux系统下Apache配置虚拟主机+SSL
环境:Linux系统
1.下载httpd软件,编译Apache:
./configure --enable-ssl(使之支持SSL)
make
make install
2.httpd.conf中把#Include conf/exta..vhosts.conf前的#去掉
在vhosts.conf中配置:
DocumentRoot:usr/local/w1
ServerName:www.avnads.cn
order deny,allow
allow from all
(添加访问网页的权限)
3.windows的system32下的hosts文件中添加:
10.10.134.26 www.britepic.org
10.10.134.26 www.cnkungfu.net
4. 在britepic和cnkungfu文件夹下分别创建britepic.htm和cnkungfu.htm
5. 重启Apache:usr/local/apache2/bin/apachecl1 restart
6.IE地址栏分别输入britepic.com和cnkungfu.com,测试britepic.htm和cnkungfu.htm
7.生成证书
cd /usr/local/apache2/conf
openssl req -new -x509 -nodes -out server.crt -keyout server.key
httpd.conf中打开httpd-ssl.conf配置即可。
相关推荐
IT之家 2020-03-11
graseed 2020-10-28
zbkyumlei 2020-10-12
SXIAOYI 2020-09-16
jinhao 2020-09-07
impress 2020-08-26
liuqipao 2020-07-07
淡风wisdon大大 2020-06-06
yoohsummer 2020-06-01
chenjia00 2020-05-29
baike 2020-05-19
扭来不叫牛奶 2020-05-08
hxmilyy 2020-05-11
黎豆子 2020-05-07
xiongweiwei00 2020-04-29
Cypress 2020-04-25
冰蝶 2020-04-20