Nginx多个域名,https redirect to http

时间:2021-06-11 14:39:42

背景描述:Nginx绑定多个域名,其中一个域名配置了https,如域名A:https://www.aaa.com;另外的域名B(http://www.bbb.com)没有配置SSL证书,

问题:以https方式访问B域名https://www.bbb.com的时候,默认跳转到A域名:https://www.aaa.com

解决方式1:在B网站的配置文件中配置443端口的监听,结果会跳转的nginx的欢迎页面;

server {

listen *:443 ssl;

server_name www.bbb.com;

ssl_certificate server_sha2.crt;

ssl_certificate_key server.key;

}

Nginx多个域名,https redirect to http

解决方式2:替换nginx默认页面,个性化展示。(待续)

*的解决方式:

http://*.com/questions/3470290/nginx-redirect-https-to-http