veza/.env.staging.example

23 lines
934 B
Text

# =============================================================================
# Staging Environment Variables — v0.981
# =============================================================================
# Copy to .env and fill with real values before:
# docker-compose -f docker-compose.staging.yml up -d
#
# For local staging (postgres without SSL): set STAGING_DB_SSLMODE=disable
# to avoid "connection requires SSL" errors. Use sslmode=require in production.
# =============================================================================
# --- REQUIRED ---
STAGING_DB_PASSWORD=
STAGING_RABBITMQ_PASSWORD=
STAGING_JWT_SECRET=
STAGING_S3_ACCESS_KEY=
STAGING_S3_SECRET_KEY=
# --- OPTIONAL (defaults) ---
STAGING_CORS_ORIGINS=https://staging.veza.app,https://staging-api.veza.app
STAGING_COOKIE_DOMAIN=.staging.veza.app
# DB SSL mode: disable (local/postgres in docker) or require (production staging)
STAGING_DB_SSLMODE=disable