Skip to content

Commit

Permalink
🚦 docs: Update traefik.md - Documentation Fix for edge case race co…
Browse files Browse the repository at this point in the history
…ndition (danny-avila#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.
  • Loading branch information
ventz authored Apr 5, 2024
1 parent 464839b commit 7e827be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/deployment/traefik.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 7e827be

Please sign in to comment.