Hi Team,

Currently, we are using the below config to route the requests from one
server to another backend server.

Server1

location /abc {
proxy_pass https://1.1.1.1/abc;
}

Server 2 (1.1.1.1)

location /abc {
proxy_pass http://127.0.0.1:1111/abc;
}

Instead of IP address, if we use FQDN with https, do we have to validate
the SSL certificate on Proxy_Pass?.

Due to IP address, multiple sites on the server Nginx access log logging
the same requests.

Is the above Nginx config, correct way of doing it?.
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to