6ee332757c
Auto Tag Develop / tag (push) Successful in 14s
Error tracking centralise : remontee des erreurs back (Symfony) et front (Nuxt) vers l'instance GlitchTip auto-hebergee. DSN vides par defaut => SDK inerte. Backend : - sentry/sentry-symfony ^5.10, bundle enregistre prod-only - config/packages/sentry.yaml : handler Monolog niveau ERROR+, ignore 4xx/AccessDenied, pas d'APM, release = %app.version% - .env : bloc SENTRY_DSN documente (vide => inerte) Frontend : - @sentry/nuxt ^10.61, module charge uniquement si NUXT_PUBLIC_SENTRY_DSN defini - runtimeConfig.public.sentry + source maps (hidden) + options d'upload - sentry.client.config.ts : init cote client gardee par if (dsn) Deploiement : - Dockerfile : ARG Sentry au build front (prefixe inline du RUN, token non persiste) + CA racine interne MALIO (update-ca-certificates) pour le handshake HTTPS GlitchTip back - build-docker.yml : --build-arg depuis les secrets Gitea - .env.prod.example : SENTRY_DSN (back, runtime)
18 lines
573 B
Bash
18 lines
573 B
Bash
APP_ENV=prod
|
|
APP_DEBUG=0
|
|
APP_SECRET=CHANGE_ME_IN_PRODUCTION
|
|
|
|
DATABASE_URL="postgresql://starseed:CHANGE_ME@host.docker.internal:5432/starseed_prod?serverVersion=16&charset=utf8"
|
|
|
|
JWT_PASSPHRASE=CHANGE_ME_IN_PRODUCTION
|
|
# HTTP en reseau local => cookie non secure
|
|
JWT_COOKIE_SECURE=0
|
|
JWT_TOKEN_TTL=86400
|
|
JWT_COOKIE_TTL=86400
|
|
|
|
CORS_ALLOW_ORIGIN='^http://starseed\.malio-dev\.fr$'
|
|
|
|
# Sentry / GlitchTip — error tracking backend (projet "starseed-api").
|
|
# Runtime, prod only. Vide/absent => SDK inerte (rien envoye).
|
|
# SENTRY_DSN=https://<cle>@<host-ou-IP>:<port>/<id-projet>
|