first commit

This commit is contained in:
2026-05-06 14:35:49 +09:00
commit 8b3402160f
11 changed files with 824 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
login-demo:
build: .
container_name: baron-sso-server-side-demo
ports:
- "4444:4444"
environment:
- PORT=4444
- SESSION_SECRET=demo-session-secret
- OIDC_ISSUER_URL=https://sso-test.hmac.kr/oidc
- OIDC_CLIENT_ID=replace-with-server-side-client-id
- OIDC_CLIENT_SECRET=replace-with-client-secret
- OIDC_REDIRECT_URI=http://localhost:4444/callback
- OIDC_CLIENT_AUTH_METHOD=client_secret_basic
- BARON_API_BASE_URL=https://sso-test.hmac.kr
- BARON_SESSION_VALIDATION_ENABLED=false
extra_hosts:
- "localhost:host-gateway"
networks:
- baron_net
networks:
baron_net:
external: true
name: baron_net