15 lines
665 B
Plaintext
15 lines
665 B
Plaintext
# API backend — URL relative : Next.js proxy vers nginx (:80), pas de CORS en dev
|
|
NEXT_PUBLIC_API_URL=/api/v1
|
|
NEXT_PUBLIC_WS_URL=ws://localhost/ws
|
|
# Cible du proxy Next (optionnel, défaut 127.0.0.1:80)
|
|
# ULTI_PROXY_ORIGIN=http://127.0.0.1
|
|
|
|
# OIDC Authentik (blueprints deploy/authentik dans ulti-backend)
|
|
NEXT_PUBLIC_OIDC_ISSUER=http://localhost/auth/application/o/ulti/
|
|
NEXT_PUBLIC_OIDC_CLIENT_ID=ulti-backend
|
|
# URL publique affichée dans les redirects OIDC (navigateur) — utiliser localhost, pas 0.0.0.0
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
|
|
# Secret serveur uniquement — doit matcher ULTID_OIDC_CLIENT_SECRET / blueprint
|
|
OIDC_CLIENT_SECRET=changeme
|