Traefik [Gateway Timeout]

Is there recent changes to Immich that would break this: https://github.com/immich-app/immich/discussions/437#discussioncomment-3609797 I'm trying this traefik config (use traefik for other services) for immich for the first time and it is not working for me docker-compose: https://pastebin.com/YBRs0jbn I have tried this both with and without the immich-proxy With immich-proxy the application is accessible at http://{URL}:2283 Both with or without immich-proxy the application is not accessible at https://{URL}
Pastebin
version: "3.8"networks: proxy: external: true name: proxy d...
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
GitHub
Traefik Documentation · Discussion #437 · immich-app/immich
I have been using this app from the beginning with traefik docker-compose setup. But after changes in /api path in the URI, I couldn't manage to work it with traefik. Is there any documenta...
1 Reply
DisgruntledQuokka
Fixed my issue. I needed to change
labels:
...
traefik.docker.network: "traefik"
...
labels:
...
traefik.docker.network: "traefik"
...
to:
labels:
...
traefik.docker.network: "proxy"
...
labels:
...
traefik.docker.network: "proxy"
...

Did you find this page helpful?