Nginx一个ip上多站点80433httphttps共存设置
Posted 私家菜地
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx一个ip上多站点80433httphttps共存设置相关的知识,希望对你有一定的参考价值。
同一服务器ip如果多个独立域名既要80 http访问,又要443https访问。
要让https和http并存,不能在配置文件中使用ssl on,配置listen 443 ssl;
实例
server
{
listen 168.104.102.52:80;
listen 168.104.102.52:443 ssl;
server_name www.iamle.com;
index index.html index.htm index.php;
root /home/wwwroot/www.iamle.com/;
#ssl on; 这里要注释掉
ssl_certificate /usr/local/nginx/conf/www_iamle_com.crt;
ssl_certificate_key /usr/local/nginx/conf/www_iamle_com.key;
#以下配置省略
}
以上是关于Nginx一个ip上多站点80433httphttps共存设置的主要内容,如果未能解决你的问题,请参考以下文章