<div dir="auto">Hi Team,<div dir="auto"><br></div><div dir="auto">Currently, we are using the below config to route the requests from one server to another backend server.</div><div dir="auto"><br></div><div dir="auto">Server1</div><div dir="auto"><br></div><div dir="auto">location /abc {</div><div dir="auto">proxy_pass <a href="https://1.1.1.1/abc">https://1.1.1.1/abc</a>;</div><div dir="auto">}</div><div dir="auto"><br></div><div dir="auto">Server 2 (1.1.1.1)</div><div dir="auto"><br></div><div dir="auto">location /abc {</div><div dir="auto">proxy_pass <a href="http://127.0.0.1:1111/abc">http://127.0.0.1:1111/abc</a>;</div><div dir="auto">}</div><div dir="auto"><br></div><div dir="auto">Instead of IP address, if we use FQDN with https, do we have to validate the SSL certificate on Proxy_Pass?. </div><div dir="auto"><br></div><div dir="auto">Due to IP address, multiple sites on the server Nginx access log logging the same requests.</div><div dir="auto"><br></div><div dir="auto">Is the above Nginx config, correct way of doing it?.</div></div>