Skip to content

Reverse proxy configuration

Rémi Marseault edited this page Oct 16, 2024 · 1 revision

vuetorrent-backend is compatible with a lot of reverse proxy

Tip

Feel free to contribute to this wiki by creating an issue if you don't see the one you use!

Here's some examples on common reverse proxies:

Traefik

Add the following labels to the container. Make sure to include these labels on the correct container (backend if using it's own IP, on vpn container if bound using network_mode), and remove the exposed port once you're done setting it up.

    labels:
      - traefik.enable=true
      - traefik.http.routers.<router_name>.entrypoints=web
      - traefik.http.routers.<router_name>.rule=Host(`<your domain here>`)
      - traefik.http.services.<service_name>.loadbalancer.server.port=<backend_port>
Clone this wiki locally