我需要传递代理网址以连接到在Nginx中作为代理传递提及的其他网址。
示例:如果我必须通过Linux服务器框连接到google.com,我必须将代理设置为xyz.org:80,然后才能连接到google.com。
那么如何在Nginx配置中实现呢?
我的Nginx配置文件是这样的:
http {
include mime.types;
}
server{
listen 80;
server_name *;
return 301 https://$host$request_uri;
}
location /xyz{
proxy_pass google.com/
}
在这里,我需要在nginx配置中传递我的代理xyz.org:80,然后才能连接到google.com /。
基本上,我服务器盒的每个请求都应该通过xyz.org:80传递到proxy_pass位置。