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
7
7
# API Configuration
8
8
API_WORKERS=1
9
9
FRONTEND_URL=your_frontend_url
10
+ REDIRECT_URI=http://localhost:8000/api/auth/callback
10
11
11
12
# Database Configuration
12
13
POSTGRES_USER=admin
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
12
12
- postgres_data:/var/lib/postgresql/data
13
13
restart : unless-stopped
14
14
network_mode : host
15
-
15
+
16
16
redis :
17
17
image : redis:alpine
18
18
container_name : redis
@@ -78,7 +78,7 @@ services:
78
78
- OIDC_CLIENT_SECRET=${OIDC_CLIENT_SECRET}
79
79
- OIDC_SERVER_URL=http://localhost:${KEYCLOAK_PORT}
80
80
- OIDC_REALM=${OIDC_REALM}
81
- - REDIRECT_URI=http://localhost:${APP_PORT}/auth/callback
81
+ - REDIRECT_URI=${REDIRECT_URI}
82
82
- POSTGRES_USER=${POSTGRES_USER}
83
83
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
84
84
- POSTGRES_DB=${POSTGRES_DB}
You can’t perform that action at this time.
0 commit comments