nginx 在内网,但是内网有一个代理,可以通过代理访问外网。系统上使用
http_proxy=http://10.10.2.10:8080/
https_proxy=http://10.10.2.10:8080/
没问题。但是 nginx 却不能使用这个配置访问外网。
想通过 nginx 代理外网的服务进入内网,供内网机器使用,想问下需要如何配置。
试过这个配置好像不行的样子
location /cip/ {
proxy_set_header Host www.cip.cc;
proxy_pass http://10.10.2.10:8080/; # 通过代理连接
}