Skip to content

Commit

Permalink
fix compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Jan 30, 2025
1 parent 3b94558 commit 798965b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/compose.prod.core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ services:
- TZ=${TIMEZONE:-UTC}
- KEYCLOAK_ADMIN=${KEYCLOAK_USER_ADMIN}
- KEYCLOAK_ADMIN_PASSWORD=${KEYCLOAK_PASSWORD_ADMIN}
- KC_DB=keycloak
- KC_DB=postgres
- KC_DB_USERNAME=root
- KC_DB_PASSWORD=root
- KC_DB_URL_PORT=5432
- KC_DB_URL=jdbc:postgresql://postgres/${POSTGRESQL_DATABASE:-keycloak}
- KC_HOSTNAME=${APP_HOSTNAME}/keycloak
- KC_HOSTNAME=${APP_HOSTNAME}
- KC_HTTP_ENABLED=${KC_HTTP_ENABLED:-true}
- KC_HEALTH_ENABLED=${KC_HEALTH_ENABLED:-true}
- KC_PROXY_HEADERS=${KC_PROXY_HEADERS:-xforwarded}
Expand All @@ -113,11 +113,11 @@ services:
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.middlewares.https-keycloak-stripprefix.stripprefix.prefixes=/keycloak"
- "traefik.http.routers.http-keycloak.rule=Host(`${APP_HOSTNAME}`) && PathPrefix(`/keycloak`)"
- "traefik.http.routers.http-keycloak.entryPoints=http"
- "traefik.http.routers.http-keycloak.entryPoints=web"
- "traefik.http.routers.http-keycloak.middlewares=redirect-to-https"
- "traefik.http.routers.http-keycloak.priority=5"
- "traefik.http.routers.https-keycloak.rule=Host(`${APP_HOSTNAME}`) && PathPrefix(`/keycloak`)"
- "traefik.http.routers.https-keycloak.entryPoints=https"
- "traefik.http.routers.https-keycloak.entryPoints=websecure"
- "traefik.http.routers.https-keycloak.middlewares=https-keycloak-stripprefix,gzip"
- "traefik.http.routers.https-keycloak.tls.certresolver=letsencrypt"
- "traefik.http.routers.https-keycloak.tls=true"
Expand Down

0 comments on commit 798965b

Please sign in to comment.