Update Docker & Kubernetes/Docker/Docker Compose/Keycloak.md

This commit is contained in:
2024-07-14 18:23:00 -06:00
parent 9dabd414dd
commit 647bf517e2

View File

@ -53,12 +53,12 @@
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN} KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN}
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD} KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
KC_HEALTH_ENABLED: true KC_HEALTH_ENABLED: true
DB_POOL_MAX_SIZE: 20 # (6) DB_POOL_MAX_SIZE: 20 # (5)
DB_POOL_MIN_SIZE: 5 # (7) DB_POOL_MIN_SIZE: 5 # (6)
DB_POOL_ACQUISITION_TIMEOUT: 30 # (8) DB_POOL_ACQUISITION_TIMEOUT: 30 # (7)
DB_POOL_IDLE_TIMEOUT: 300 # (9) DB_POOL_IDLE_TIMEOUT: 300 # (8)
JDBC_PARAMS: "connectTimeout=30" JDBC_PARAMS: "connectTimeout=30"
# KC_HOSTNAME_DEBUG: true # (5) # KC_HOSTNAME_DEBUG: true # (9)
ports: ports:
- 8080:8080 - 8080:8080
restart: always restart: always
@ -94,11 +94,11 @@
2. This assumes you are running Keycloak behind a reverse proxy, in my particular case, Traefik 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 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 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 5. Maximum connections in the database pool
6. Maximum connections in the database pool 6. Minimum idle connections in the database pool
7. Minimum idle connections in the database pool 7. Timeout for acquiring a connection from the database pool
8. Timeout for acquiring a connection from the database pool 8. Timeout for closing idle connections to the database
9. 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" === ".env"