53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Archivo de variables de entorno para docker-compose.yml
|
|
COMPOSE_PROJECT_NAME=suitecoffee_prod
|
|
|
|
# Entorno de desarrollo
|
|
NODE_ENV=production
|
|
|
|
# app - app
|
|
APP_PORT=3000
|
|
|
|
# auth - app
|
|
AUTH_PORT=4000
|
|
|
|
# tenants - postgres
|
|
TENANTS_DB_NAME=postgres
|
|
TENANTS_DB_USER=postgres
|
|
TENANTS_DB_PASS=postgres
|
|
|
|
# db primaria - postgres
|
|
DB_NAME=suitecoffee
|
|
DB_USER=suitecoffee
|
|
DB_PASS=suitecoffee
|
|
|
|
|
|
# Authentik PostgreSQL Setup
|
|
AK_HOST_DB=ak-db
|
|
AK_PG_DB=authentik
|
|
AK_PG_USER=authentik
|
|
AK_PG_PASS=gOWjL8V564vyh1aXUcqh4o/xo7eObraaCVZezPi3iw2LzPlU
|
|
|
|
# Authentik Cookies
|
|
AUTHENTIK_COOKIE__DOMAIN=sso.suitecoffee.uy
|
|
AUTHENTIK_SECURITY__CSRF_TRUSTED_ORIGINS=https://sso.suitecoffee.uy,https://suitecoffee.uy
|
|
|
|
# Authentik Security
|
|
AUTHENTIK_SECRET_KEY=11zMsUL57beO+okjeGh7OB3lQdGUWII+VaATHs/zsw1+6KMSTyGfAY0yHpq3C442+3CwrZ/KtjgHBfbv
|
|
AUTHENTIK_ERROR_REPORTING__ENABLED=true
|
|
|
|
# Authentik Email
|
|
|
|
AUTHENTIK_EMAIL__HOST=smtp.gmail.com # SMTP Host Emails are sent to
|
|
AUTHENTIK_EMAIL__PORT=465
|
|
AUTHENTIK_EMAIL__PASSWORD=Succulent-Sanded7
|
|
|
|
AUTHENTIK_EMAIL__USE_TLS=false # Use StartTLS
|
|
AUTHENTIK_EMAIL__USE_SSL=true # Use SSL
|
|
AUTHENTIK_EMAIL__TIMEOUT=10
|
|
|
|
# Email address authentik will send from, should have a correct @domain
|
|
AUTHENTIK_EMAIL__FROM=info.suitecoffee@gmail.com
|
|
|
|
# Authentik Bootstrap
|
|
AUTHENTIK_BOOTSTRAP_PASSWORD=info.suitecoffee@gmail.com
|
|
AUTHENTIK_BOOTSTRAP_EMAIL=info.suitecoffee@gmail.com |