🚦 docs: Update traefik.md - Documentation Fix for edge case race condition (#2322)

Sometimes Traefik created a race condition where LibreChat was up on tcp/3080, and while Traefik was up on tcp/443, it could not route to the LibreChat container due to the multiple interfaces -- depending on how they came up. This is easily solved by simply using one interface.
This commit is contained in:
Ventz Petkov 2024-04-05 19:32:51 -04:00 committed by GitHub
parent f6a84887e1
commit 549026f677
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,6 @@ services:
- "traefik.http.routers.librechat.tls.certresolver=leresolver"
- "traefik.http.services.librechat.loadbalancer.server.port=3080"
networks:
- web
- librechat_default
volumes:
- ./librechat.yaml:/app/librechat.yaml
@ -51,7 +50,7 @@ services:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "./letsencrypt:/letsencrypt"
networks:
- web
- librechat_default
command:
- "--log.level=DEBUG"
- "--api.insecure=true"