Nginx路由https为http

时间:2017-08-23 09:46:13

标签: nginx

我有一个nginx服务器代理对https服务的请求。 Nginx服务器与我使用它的服务在同一个专用网络中。 我可以在我的服务和nginx之间使用http,或者在这种情况下,nginx不会加密nginx和外部服务之间的流量吗? 所以我有:

MyService - 私有网络http请求 - > Nginx - https - >外部服务。

server {
    listen 8080;
    location / {
        proxy_pass https://example.com;
    }
}

我担心的是,我发送了http请求,并期望在此过程中的某处加密数据。

它是否真的可以用作Nginx - https - >外部或它将是Nginx - http - >外部

0 个答案:

没有答案