我有一个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 - >外部