首页>>帮助中心>> 香港服务器nginx http重定向https配置说明

香港服务器nginx http重定向https配置说明

2024/8/12 73次
香港服务器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地扯中。







购买使用一诺网络香港服务器,可以极大降低初创企业、中小企业以及个人开发者等用户群体的整体IT使用成本,无需亲自搭建基础设施、简化了运维和管理的日常工作量,使用户能够更专注于自身的业务发展和创新。香港服务器低至29/月,购买链接:https://www.enuoidc.com/vps.html?typeid=2

版权声明

    声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们996811936@qq.com进行处理。