Hi,

Not sure if anybody can give me some pointers here but I seem to be
experiencing performance issues on Guacamole connections to my Ubuntu 16.04
desktop VMs (used Chase Wright instructions to run the Unity desktop).  I
open a terminal session within the Ubuntu VMs via Guacamole
http://[localhost]/Desktop (proxied by Nginx) and start typing, the latency
is a second or so between each letter typed.  Going direct to Guacamole -
http://[localhost]:8080/Guacamole the connection is perfect.

The Nginx proxy is running on the same VM as Guacamole.  I am using HTTP at
the moent (no SSL at present).

I have installed a 16.04 ubuntu server on a VM with:

Guacamole 0.9.12
Tomcat8
Nginx 1.11.9

My Nginx conf file below:

server {

listen 192.168.1.131:80 default_server;
server_name www.test.com;


location / {
proxy_pass http://192.168.1.131:8080;
}

location /Desktop/ {

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 $connection_upgrade;
proxy_cookie_path /guacamole/ /;
access_log off;
proxy_pass http://192.168.1.131:8080/guacamole;
}

}

Pretty sure I have missed something here.  The log files are not reporting
any issues that I can see.

What can be the issue?

Mike 




--
View this message in context: 
http://apache-guacamole-incubating-users.2363388.n4.nabble.com/Guacamole-and-Nginx-poor-performance-tp963.html
Sent from the Apache Guacamole (incubating) - Users mailing list archive at 
Nabble.com.

Reply via email to