Nginx一个ip上多站点80、433http、https共存设置

2021-03-19 16:26

阅读:302

标签:站点   https   list   home   cert   多站点   配置文件   serve   crt   

同一服务器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上多站点80、433http、https共存设置

标签:站点   https   list   home   cert   多站点   配置文件   serve   crt   

原文地址:https://www.cnblogs.com/yerkle/p/12751108.html

上一篇:TCP/UDP/HTTP

下一篇:关于ConfigMap和.Net Core


评论


亲,登录后才可以留言!