(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

2221
docker/auth/realm.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -17,3 +17,15 @@ server {
}
server {
listen 8083;
server_name localhost;
charset utf-8;
location / {
proxy_pass http://keycloak:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}