nginx反向代理不适用于Https

时间:2020-09-06 06:09:16

标签: nginx nginx-reverse-proxy nginx-location nginx-ingress

我正在尝试实现这种情况:

1-发送 HTTPS 请求到nginx http:// localhost:80 Http 上的localhost)

2- nginx代理请求并使用http://www.example.com

发送响应

HTTPS网站请求>> Nginx代理>> HTTP响应。

我的配置似乎仅适用于HTTP网站,我无法管理HTTPS。

server {
        listen  80;
        resolver  8.8.8.8;

        location / {
           proxy_pass http://$http_host;
           proxy_set_header Host $http_host;
        }
 }

0 个答案:

没有答案