Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.3k views
in Technique[技术] by (71.8m points)

nginx 子域名http转https问题

现在我有一个主页 www.xxx.com ,使用 nginx 做反向代理,我配置了它的 http 跳转 https:

server {
    server_name www.xxx.com;
    listen 80;
    return 301 https://$host$request_uri;
}

这个是没有问题的。现在我想这么一个功能, http://blog.xxx.com 跳转 https://blog.xxx.com

目前折腾的结果是 http://blog.xxx.com 自动跳到 http://www.xxx.com 去了。我试着把上面的配置复制一份,改了 server_name 没用。通过 if 条件判断 host 似乎也没用(也可能是我太菜了,写的有问题)。

请问各位有什么办法解决这个问题?感激不尽


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...