Hello, I'm trying to install Funkwhale behind the proxy I already use for all my services, Caddy. From what I've read, the best way to do this is to set up the docker container via install instructions, setting up Nginx in the process, and then having Nginx run behind Caddy.
I've followed all the instructions for Funkwhale setup as normal, and added it to the caddyfile as below.
`# Funkwhale
<my domain here> {
reverse_proxy 192.168.1.6:5005
encode gzip
tls {
protocols tls1.3
}
}`
I've had to change Funkwhale's port to 5005 and Nginx's port to 89 to avoid collisions with other services, but the logs show that the Funkwhale docker starts up with. However, once I have everything running, I can't actually access the Funkwhale portal at all. The browser gives me a "502 - Bad Gateway" error, and Caddy gives me a "connection refused" error in the logs every time I try, but everything on Nginx or Funkwhale is entirely silent. What am I doing wrong?