<div dir="ltr"><div><div><div><div><div>Hi,<br><br></div><div>My reverse proxy setup is like this<br></div><br></div><a href="http://nginx_rps">http://nginx_rps</a>  ---> <a href="https://authwebser:443">https://authwebser:443</a>  ( I dont have access to authserver )<br><br></div>The reverse proxy is correctly redirecting when I access the <a href="http://nginx_rps">http://nginx_rps</a> through browser. But when I type the credentials correctly in the webpage it is giving credential error. That means nginx is not correctly passing the credentials to authserver over ssl. What is wrong with my setup. Do I need to modify anything ?<br><br><div>server {</div><div>        listen 80 default_server;</div><div>        listen [::]:80 default_server ipv6only=on;</div><div><br></div><div>        root /usr/share/nginx/html;</div><div>        index index.html index.htm;</div><div><br></div><div>        # Make site accessible from <a href="http://localhost/" target="_blank">http://localhost/</a></div><div>#       server_name localhost;</div><div>        server_name XXXXXXXXX;</div><div>        access_log  /var/log/nginx/access.log;</div><div>        location / {</div><div>                # First attempt to serve request as file, then</div><div>                # as directory, then fall back to displaying a 404.</div><div>                proxy_set_header Host $host;</div><div>                proxy_set_header Host $host;</div><div>                proxy_set_header Accept-Encoding "";</div><div>                proxy_set_header X-Real-IP $remote_addr;</div><div><br></div><div>                proxy_pass      <a href="https://54.165.9.92" target="_blank">https://XXXXXXXXXX</a>;</div><div>             <br></div><br><div>                #include                /etc/nginx/proxy.conf;</div><div>#               try_files $uri $uri/ =404;</div><div>                # Uncomment to enable naxsi on this location</div><div>                # include /etc/nginx/naxsi.rules</div><div>        }</div><div><br></div><div>        # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests<br><br><br></div>What needs to be done so that the authentication happens correctly over ssl from nginx to authserver.<br><br></div>Regards<br></div>T <br></div>