nginx http重定向https配置说明

2017-05-04 17:13:13 8939

nginx http重定向https配置说明

现在什么苹果,谷歌浏览器请求地扯基本都要求使用https了,如何把原来的http协议重定向到https中呢,这里我们可以使用http反向代理软件nginx。


使用

安装

yum install nginx -y

配置 

cat /etc/nginx

 

server {

 listen 80;

 server_name dounine.com www.landui.com;

 return  301 https://www.landui.com$request_uri;

}

server {

 listen 443;

 server_name dounine.com dounine.com;

 return  301 https://www.landui.com$request_uri;

}

server {

 listen 443;

 server_name www.landui.com;

 ssl on;

 ssl_certificate /etc/nginx/dounine.crt;

 ssl_certificate_key /etc/nginx/dounine.key;


 

location / {

client_max_body_size 20m;

proxy_pass http://www.landui.com:8080;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

}


注意
以上配置可将www.landui.com、dounine.com与https://www.landui.com 重定向至https://www.landui.com地扯中。

记得将防火墙的80与443端口打开。


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: