NGINX load balancing - Proxy
Carlos Renato
crenatovb at gmail.com
Tue Feb 15 02:08:53 UTC 2022
Hey guys,
Can someone help me? I'm using NGINX to direct connections to two Proxy
servers.
I did a simple setup.
upstream webgateway {
server 192.168.239.151:9090;
server 192.168.239.152:9090;
}
server {
listen 81;
server_name proxy.lab.local;
location / {
proxy_pass http://webgateway;
}
}
NGINX is listening on port 81.
If I configure the proxy IP in the browser, the client "goes out" to the
Internet.
Browser:
192.168.239.151:9090 or 192.168.239.152:9090 - Its Ok!
If I configure the NGINX IP in the browser, the client "does not go out" to
the internet.
Browser:
192.168.239.151:81 - No!
The packet even arrives at the proxy, but the browser tries to load "
http://webgateway.com"
Can someone help me? Thanks.
--
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20220214/f0b48bef/attachment.htm>
More information about the nginx
mailing list