Hello, I have configured Guacamole 1.1.0 on CentOS 7 with Tomcat 9.0.33, I have use NGINX to let users to login on guacamole via https://mydomain.name instead of http://my.guacamole.server:8080/guacamoleall work good except that in Guacamole all users seems to login from 127.0.0.1.I have use this nginx.conf: (guacamole side)# GUACAMOLE SERVER SETTINGSserver{listen 443 ssl;#listen [::]:443 ssl;server_name mydomain.name;proxy_buffering off;#proxy_redirect 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_upgrade;proxy_cookie_path /guacamole/ /;location ~ /.well-known/acme-challenge{ root /var/www/html/;}location /{proxy_pass http://127.0.0.1:8080/guacamole/;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;proxy_cookie_path /guacamole/ /;access_log off;}}I have read that i need to set up a "valve" also in Tomcat, but I don't know where and how, can someone please help me solve this issue?Thanks,Alessandro
-- Sent from: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/
