chore: update Keycloak command arguments and environment configuration for simplified HTTP access

This commit is contained in:
Emre Kirman 2026-05-02 12:40:03 +03:00
parent 97d08e0043
commit a379e22e84

View File

@ -3,16 +3,16 @@ version: '3.8'
services: services:
keycloak: keycloak:
image: quay.io/keycloak/keycloak:latest 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: environment:
KC_DB: postgres KC_DB: postgres
KC_DB_URL: jdbc:postgresql://postgres-db:5432/keycloak KC_DB_URL: jdbc:postgresql://postgres-db:5432/keycloak
KC_DB_USERNAME: postgres KC_DB_USERNAME: postgres
KC_DB_PASSWORD: 98836 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: admin
KEYCLOAK_ADMIN_PASSWORD: eE24619840420* KEYCLOAK_ADMIN_PASSWORD: eE24619840420*
KC_PROXY_HEADERS: none
KC_HTTP_ENABLED: 'true'
ports: ports:
- target: 8080 - target: 8080
published: 8084 published: 8084