Hi - I am able to connect via RDP but after a few seconds I receive an error
saying the server took too long to respond.
Here is my nginx reverse proxy config.
server {
listen 443 ssl;
root /config/www;
index index.html index.htm index.php;
server_name sub1.domain.com;
ssl_certificate /config/keys/letsencrypt/fullchain.pem;
ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
ssl_dhparam /config/nginx/dhparams.pem;
ssl_prefer_server_ciphers on;
client_max_body_size 0;
location / {
# auth_basic "Restricted";
# auth_basic_user_file /config/nginx/.htpasswd;
# include /config/nginx/proxy.conf;
proxy_pass http://192.168.1.2:8162/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
access_log off;
}
}
Any suggestions?
Thanks
--
View this message in context:
http://apache-guacamole-incubating-users.2363388.n4.nabble.com/Connection-Error-tp1523.html
Sent from the Apache Guacamole (incubating) - Users mailing list archive at
Nabble.com.