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

nginx转发请求,从https到http

时间:2018-03-17 12:11:35      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:Linux   http   https   nginx   

新项目的域名是https的,需要访问公司的图片服务器,图片服务器的域名是http的,因此做了一个nginx的转发

server {
listen 443;
server_name 新项目域名;
#include ssl.conf;
ssl on;
ssl_certificate keys/1_新项目证书_bundle.crt;
ssl_certificate_key keys/2_新项目证书.key;
include qssl.conf;
location / {
include proxy.conf;
proxy_pass http://新项目程序池名(upstream.conf);
}
location ~ /img/图片服务器域名(com|net)/ {
set $host_name 图片服务器域名;
rewrite /img/(.
).com/(.)$ /$2 break;
rewrite /img/(.
).net/(.*)$ /$2 break;
proxy_set_header Host $host_name;
proxy_pass http://图片服务器ip;

                    -t检查nginx,然后-s  reload
                    新项目即能访问图片

nginx转发请求,从https到http

标签:Linux   http   https   nginx   

原文地址:http://blog.51cto.com/zhangcf/2087823

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