diff --git a/Docker & Kubernetes/Docker/Docker Compose/Keycloak.md b/Docker & Kubernetes/Docker/Docker Compose/Keycloak.md index dfaef68..bc9feee 100644 --- a/Docker & Kubernetes/Docker/Docker Compose/Keycloak.md +++ b/Docker & Kubernetes/Docker/Docker Compose/Keycloak.md @@ -53,12 +53,12 @@ KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN} KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD} KC_HEALTH_ENABLED: true - DB_POOL_MAX_SIZE: 20 # (6) - DB_POOL_MIN_SIZE: 5 # (7) - DB_POOL_ACQUISITION_TIMEOUT: 30 # (8) - DB_POOL_IDLE_TIMEOUT: 300 # (9) + DB_POOL_MAX_SIZE: 20 # (5) + DB_POOL_MIN_SIZE: 5 # (6) + DB_POOL_ACQUISITION_TIMEOUT: 30 # (7) + DB_POOL_IDLE_TIMEOUT: 300 # (8) JDBC_PARAMS: "connectTimeout=30" -# KC_HOSTNAME_DEBUG: true # (5) +# KC_HOSTNAME_DEBUG: true # (9) ports: - 8080:8080 restart: always @@ -94,11 +94,11 @@ 2. This assumes you are running Keycloak behind a reverse proxy, in my particular case, Traefik 3. Set this to the FQDN that you are expecting to reach the Keycloak server at behind your reverse proxy 4. This assumes you are running Keycloak behind a reverse proxy, in my particular case, Traefik - 5. If this is enabled, Navigate to https://auth.bunny-lab.io/realms/master/hostname-debug to troubleshoot issues with the deployment if you experience any issues logging into the web portal or admin UI - 6. Maximum connections in the database pool - 7. Minimum idle connections in the database pool - 8. Timeout for acquiring a connection from the database pool - 9. Timeout for closing idle connections to the database + 5. Maximum connections in the database pool + 6. Minimum idle connections in the database pool + 7. Timeout for acquiring a connection from the database pool + 8. Timeout for closing idle connections to the database + 9. If this is enabled, Navigate to https://auth.bunny-lab.io/realms/master/hostname-debug to troubleshoot issues with the deployment if you experience any issues logging into the web portal or admin UI === ".env"