From a379e22e8451677b616457df4a394cfa3221f55b Mon Sep 17 00:00:00 2001 From: Emre Kirman Date: Sat, 2 May 2026 12:40:03 +0300 Subject: [PATCH] chore: update Keycloak command arguments and environment configuration for simplified HTTP access --- keycloak/keycloak.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/keycloak/keycloak.yml b/keycloak/keycloak.yml index 17e7349..a1eabf8 100644 --- a/keycloak/keycloak.yml +++ b/keycloak/keycloak.yml @@ -3,16 +3,16 @@ version: '3.8' services: keycloak: image: quay.io/keycloak/keycloak:latest - command: start --http-relative-path /auth + command: start --http-enabled=true --hostname-strict=false --hostname-strict-https=false environment: KC_DB: postgres KC_DB_URL: jdbc:postgresql://postgres-db:5432/keycloak KC_DB_USERNAME: postgres KC_DB_PASSWORD: 98836 - KC_HOSTNAME: auth.emrekirman.com # Kendi domaininizle değiştirin - KC_PROXY: edge # Reverse proxy (Nginx/Traefik) arkasındaysanız gerekli KEYCLOAK_ADMIN: admin KEYCLOAK_ADMIN_PASSWORD: eE24619840420* + KC_PROXY_HEADERS: none + KC_HTTP_ENABLED: 'true' ports: - target: 8080 published: 8084