On Thu, 12 Jan 2023 19:08:15 +0100 Rémy Dernat wrote: > My Galene server is running behind a Nginx RP for more than one year. > I attached my galene server configuration on nginx. It is really > simple. I run it behind an Apache reverse-proxy. Config is below. You need the mod_proxy_wstunnel module to proxy the Websocket traffic. #----------------------------------------------------------------------- # Apache snippet to reverse-proxy galene running on port 8443 ProxyPreserveHost on ProxyPass /ws ws://127.0.0.1:8443/ws ProxyPassReverse /ws ws://127.0.0.1:8443/ws ProxyPass / http://127.0.0.1:8443/ ProxyPassReverse / http://127.0.0.1:8443/ #----------------------------------------------------------------------- And this is my systemd unit: #----------------------------------------------------------------------- [Unit] Description=Galene After=network.target [Service] Type=simple WorkingDirectory=/home/galene User=galene Group=galene ExecStart=/home/galene/galene -turn ip.of.my.box:1194 -insecure -http 127.0.0.1:8443 LimitNOFILE=65536 [Install] WantedBy=multi-user.target #----------------------------------------------------------------------- I use the -insecure option because Apache handles the TLS termination for me. Regards, Dianne.