guacamole-docker-compose
guacamole-docker-compose copied to clipboard
open port 8080 is only tomcat homepage , not guacamole ?
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 ?
Did you add /guacamole/ to the url? (http://192.168.100.100:8080/guacamole/)
Is there a way to avoid this and just use whatever port we wish and no trailing URL?
Thats the default behavior of guacamole, depending on your reverse proxy you may automatically redirect.
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;
}