Skip to content

Commit 24d3c26

Browse files
authored
Fix invitations traefik configuration (#1092)
traefik http service name should be `invitations` (not `webserver`). This is a typo (after copy pasting) Related PR(s): * Bug was introduced in #950
1 parent 7a94f0d commit 24d3c26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/simcore/docker-compose.yml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ services:
190190
- traefik.http.routers.${SWARM_STACK_NAME}_invitations.rule=(${DEPLOYMENT_FQDNS_CAPTURE_INVITATIONS})
191191
- traefik.http.routers.${SWARM_STACK_NAME}_invitations.entrypoints=http
192192
- traefik.http.services.${SWARM_STACK_NAME}_invitations.loadbalancer.server.port=8000
193-
- traefik.http.services.${SWARM_STACK_NAME}_webserver.loadbalancer.healthcheck.path=/
194-
- traefik.http.services.${SWARM_STACK_NAME}_webserver.loadbalancer.healthcheck.interval=2000ms
195-
- traefik.http.services.${SWARM_STACK_NAME}_webserver.loadbalancer.healthcheck.timeout=1000ms
193+
- traefik.http.services.${SWARM_STACK_NAME}_invitations.loadbalancer.healthcheck.path=/
194+
- traefik.http.services.${SWARM_STACK_NAME}_invitations.loadbalancer.healthcheck.interval=2000ms
195+
- traefik.http.services.${SWARM_STACK_NAME}_invitations.loadbalancer.healthcheck.timeout=1000ms
196196
- traefik.http.routers.${SWARM_STACK_NAME}_invitations_swagger.rule=(${DEPLOYMENT_FQDNS_CAPTURE_INVITATIONS}) && PathPrefix(`/dev/doc`)
197197
- traefik.http.routers.${SWARM_STACK_NAME}_invitations_swagger.entrypoints=http
198198
- traefik.http.middlewares.${SWARM_STACK_NAME_NO_HYPHEN}_invitations_swagger_auth.basicauth.users=${TRAEFIK_USER}:${TRAEFIK_PASSWORD}

0 commit comments

Comments
 (0)