我正在尝试设置NGINX来代理从特定位置到Internet的请求,但是我需要通过公司代理。配置示例:
location /test {
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://<service_accessible_through_the_internet>/test;
}
问题在于NGINX尝试在不使用代理的情况下访问Internet中的服务(与导出http_proxy和使用curl相反),因此返回超时。 是否可以将NGINX配置为按所述方式工作? 谢谢, 骗子