flcontainers / guacamole

A Docker Container for Apache Guacamole, a client-less remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH over HTML5. For x64, arm64 and ppc64le.
https://hub.docker.com/r/flcontainers/guacamole
GNU General Public License v3.0
322 stars 60 forks source link

Adding to tomcat's server.xml #89

Closed tscibilia closed 1 month ago

tscibilia commented 1 year ago

I'm looking to modify the tomcat server.xml file to properly display the x-forwarded-for IP address of the client connection made to guacamole as described in the docs here https://guacamole.apache.org/doc/gug/reverse-proxy.html#setting-up-the-remote-ip-valve. Is there a convenient was to possible mount that file in the docker-compose file?

Maksance commented 8 months ago

This file is in /opt/tomcat/conf on the container side. You can mount with these settings on your docker-compose:

version: "3"
services:
  guacamole:
    image: flcontainers/guacamole
    container_name: guacamole
    environment:
      TZ: 'UTC'
      EXTENSIONS: 'auth-totp,auth-ldap'
    volumes:
      - postgres:/config
      - </path/to/your/directory>:/opt/tomcat/conf
      - /etc/localtime:/etc/localtime:ro
    ports:
      - 8080:8080
    restart: unless-stopped
volumes:
  postgres:
    driver: local