码迷,mamicode.com
首页 > Web开发 > 详细

单台web服务器实现http访问自动跳转到https:

时间:2018-06-01 11:35:41      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:单台web服务器实现http访问自动跳转

方法一:利用地址重写功能
server {
listen 80;
server_name www.etiantian.org;
rewrite ^(.*)$ https://$host$1 permanent;
}
说明:在https配置server基础上再添加http跳转server

方法二:利用error_page识别错误码信息进行跳转
server {
listen 443;
server_name www.etiantian.org;
ssl on;
ssl_certificate /application/nginx/conf/key/server.crt;
ssl_certificate_key /application/nginx/conf/key/server.key;
location / {
root html/www;
index index.html index.htm;
}
}
说明:497为内置错误码,当访问http无法处理,需要利用https处理时

利用反向代理服务器进行http到https跳转

1:修改地址池信息
upstream www_server_pools {
server 10.0.0.7:443;
server 10.0.0.8:443;
server 10.0.0.9:443;
}

2:修改地址池调用信息
server {
listen 443;
server_name www.etiantian.org;
ssl on;
ssl_certificate /application/nginx/conf/key/server.crt;
ssl_certificate_key /application/nginx/conf/key/server.key;
location / {
proxy_pass https://www_server_pools;
}
}

3:定义http到https跳转配置信息
server {
listen 80;
server_name www.etiantian.org;
rewrite ^(.*)$ https://$host$1 permanent;
}

单台web服务器实现http访问自动跳转到https:

标签:单台web服务器实现http访问自动跳转

原文地址:http://blog.51cto.com/11434174/2122719

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!