Hi Ajdar Which operating system are you running on?
Have a look at Chapter 4. Proxying Guacamole<https://guacamole.apache.org/doc/gug/proxying-guacamole.html> https://guacamole.apache.org/doc/gug/proxying-guacamole.html The nginx configuration below should achieve what you want. Stefan [root@guacamole ~]# cat /etc/nginx/conf.d/guacamole.conf server { listen 80 default_server; listen [::]:80 default_server; server_name _; location / { proxy_pass http://localhost: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; } } On Jun 20, 2019, at 09:39, A. Yuesuen <[email protected]<mailto:[email protected]>> wrote: Hello Guys, Guacamole is working finei I can enter Gucamole by my LDap User on the Adress: "hostname.com:8080/guacamole<http://hostname.com:8080/guacamole>" and started connections already. Now i want change the Url from: http://hostaname.com:8080/guacamole in https://hostname.com<https://hostname.com/> The Documentation in the web are a little diffcult to understand and cant follow them (most are without a path). Can someone send a Tutorial for beginners. best wishes Ajdar
