guacamole-docker-compose icon indicating copy to clipboard operation
guacamole-docker-compose copied to clipboard

open port 8080 is only tomcat homepage , not guacamole ?

Open changchichung opened this issue 4 years ago • 4 comments

I just clone this repo and run docker-compose up init-guacamole-db docker-compose up -d it works , but when I try to open web admin console , there's only tomcat homepage no guacamole login , did I miss something ?

changchichung avatar Mar 19 '20 01:03 changchichung

Did you add /guacamole/ to the url? (http://192.168.100.100:8080/guacamole/)

dwydler avatar Mar 28 '20 17:03 dwydler

Is there a way to avoid this and just use whatever port we wish and no trailing URL?

codywarmbo avatar May 28 '20 20:05 codywarmbo

Thats the default behavior of guacamole, depending on your reverse proxy you may automatically redirect.

Kofl avatar Aug 30 '20 21:08 Kofl

here is my nginx config to make it work with the subdomain:

location / {
    proxy_pass http://ipofyourserver: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;
    access_log off;
}

clemone210 avatar Apr 21 '21 13:04 clemone210