File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ APP_PORT=8000
77# API Configuration
88API_WORKERS = 1
99FRONTEND_URL = your_frontend_url
10+ REDIRECT_URI = http://localhost:8000/api/auth/callback
1011
1112# Database Configuration
1213POSTGRES_USER = admin
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
1212 - postgres_data:/var/lib/postgresql/data
1313 restart : unless-stopped
1414 network_mode : host
15-
15+
1616 redis :
1717 image : redis:alpine
1818 container_name : redis
@@ -78,7 +78,7 @@ services:
7878 - OIDC_CLIENT_SECRET=${OIDC_CLIENT_SECRET}
7979 - OIDC_SERVER_URL=http://localhost:${KEYCLOAK_PORT}
8080 - OIDC_REALM=${OIDC_REALM}
81- - REDIRECT_URI=http://localhost:${APP_PORT}/auth/callback
81+ - REDIRECT_URI=${REDIRECT_URI}
8282 - POSTGRES_USER=${POSTGRES_USER}
8383 - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
8484 - POSTGRES_DB=${POSTGRES_DB}
You can’t perform that action at this time.
0 commit comments