nginx转发请求,从https到http

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx转发请求,从https到http相关的知识,希望对你有一定的参考价值。

新项目的域名是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的主要内容,如果未能解决你的问题,请参考以下文章

Nginx转发请求过程解析

nginx转发https到http

Nginx转发TCP请求

Nginx配置双向认证https+转发http的请求

Nginx下https反向代理转发无效问题

Atmosphere - Nginx 作为 https->http 转发器 - websocket 不工作