Auto Logon with Reverse Proxy

Auto Logon with Reverse Proxy

Hello,

We're in the process of setting up our new installation of PMP and have our NGINX reverse proxy working perfectly, except for one part, RDP. I have setup a listener for port 7273 that forwards to the same port on the webserver. As soon as I open an RDP auto logon window it closes, yet when I try the troubleshoot window that appears properly.

I know it's a problem with the reverse proxy setup because the auto logon works perfectly if I connect internally to the web server. 

Below is part of the code from my NGINX virtual server for the site. I have xxx'd out our domain info. 

pmp is the name I've given the upstream for the server. 

server {                                                                        
                                                   
server_name xxx.xxx.com;                                                  
listen 7273;                                                                    
ssl on;                                                                         
ssl_certificate /etc/nginx/ssl/access.pem;                                      
ssl_certificate_key /etc/nginx/ssl/access.key;                                  
                                                                                
location / {                                                                    
                  
proxy_pass https://pmp;                                                 
proxy_redirect off;                                                                          
proxy_set_header        Host    $Host;                                          
proxy_set_header        X-Real-IP       $remote_addr;                           
proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;             
                                                                                
                                                                                
}                                                                               
}     


Has anybody run into this before? Any tips on how to fix this issue? Anything will help!

Thanks!
                New to ADManager Plus?

                  New to ADSelfService Plus?