标签:nginx实现http https共存一个server
server {
listen 80;
listen 443 ssl; #监听端口,要让https和http并存,不能在配置文件中使用ssl on
server_name 192.168.1.193;
root C:\webapps\bsxmgw\pages;
index index.html index.htm;
#ssl on; 这里要注释掉
ssl_certificate C:/webapps/identifykey.cer;
ssl_certificate_key C:/webapps/identifykey.key;
#以下配置可以忽略
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root C:\webapps\bsxmgw;
access_log off;
expires 30d;
}
}
本文出自 “风之然” 博客,请务必保留此出处http://fengzhiran.blog.51cto.com/9297534/1936618
标签:nginx实现http https共存一个server
原文地址:http://fengzhiran.blog.51cto.com/9297534/1936618