(project) configure Keycloak server to support OIDC

Create a realm 'impress' and configure it to support
the authorization code flow.
This commit is contained in:
Lebaud Antoine
2024-02-23 23:54:35 +01:00
committed by Samuel Paccoud
parent 0f9327a1de
commit 23e92d12fb
5 changed files with 2286 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# Postgresql db container configuration
POSTGRES_DB=keycloak
POSTGRES_USER=impress
POSTGRES_PASSWORD=pass
# App database configuration
DB_HOST=kc_postgresql
DB_NAME=keycloak
DB_USER=impress
DB_PASSWORD=pass
DB_PORT=5433