14 lines
470 B
Bash
14 lines
470 B
Bash
# Authentik URL (Docker host IP or http://127.0.0.1:9000 for local)
|
|
VITE_AUTHENTIK_URL=http://172.237.44.156:9000
|
|
|
|
# Application slug from Authentik → Applications → your app
|
|
VITE_OIDC_APP_SLUG=oidc-demo
|
|
|
|
# Client ID from the linked OAuth2/OpenID provider
|
|
VITE_OIDC_CLIENT_ID=your-client-id
|
|
|
|
# Optional: full issuer override instead of AUTHENTIK_URL + APP_SLUG
|
|
# VITE_OIDC_AUTHORITY=http://127.0.0.1:9000/application/o/oidc-demo/
|
|
|
|
VITE_API_URL=http://localhost:3001
|