49 lines
2.0 KiB
Plaintext
49 lines
2.0 KiB
Plaintext
TYPE=taiga
|
|
TIMEOUT=60
|
|
ENABLE_AUTO_UPDATE=true
|
|
ENABLE_BACKUPS=true
|
|
|
|
DOMAIN=taiga.example.com
|
|
## Domain aliases
|
|
#EXTRA_DOMAINS=', `www.taiga.example.com`'
|
|
LETS_ENCRYPT_ENV=production
|
|
|
|
COMPOSE_FILE="compose.yml"
|
|
# Set the subpath that taiga resides
|
|
# TAIGA_SUBPATH=""
|
|
|
|
# Djano superuser settings to create initial superuser
|
|
DJANGO_SUPERUSER_USERNAME=admin
|
|
DJANGO_SUPERUSER_EMAIL=admin@example.com
|
|
SECRET_DJANGO_PASSWORD_VERSION=v1
|
|
DJANGO_SUPERUSER_PASSWORD_FILE=/run/secrets/django_password
|
|
|
|
# Taiga's Secret Key - Variable to provide cryptographic signing
|
|
SECRET_TAIGA_SECRET_VERSION=v1
|
|
SECRET_POSTGRES_PASSWORD_VERSION=v1
|
|
SECRET_RABBITMQ_PASSWORD_VERSION=v1
|
|
POSTGRES_PASSWORD_FILE=/run/secrets/postgres_password
|
|
TAIGA_SECRET_KEY_FILE=/run/secrets/taiga_secret
|
|
RABBITMQ_PASS_FILE=/run/secrets/rabbitmq_password
|
|
|
|
# Taiga's RabbitMQ settings - Variables to leave messages for the realtime and asynchronous events
|
|
# RABBITMQ_ERLANG_COOKIE=secret-erlang-cookie # unique value shared by any connected instance of RabbitMQ
|
|
|
|
# Taiga's Attachments - Variable to define how long the attachments will be accesible
|
|
ATTACHMENTS_MAX_AGE=360 # token expiration date (in seconds)
|
|
|
|
# Taiga's Telemetry - Variable to enable or disable the anonymous telemetry
|
|
ENABLE_TELEMETRY=True
|
|
|
|
# COMPOSE_FILE="$COMPOSE_FILE:compose.email.yml"
|
|
# Taiga's SMTP settings - Variables to send Taiga's emails to the users
|
|
|
|
# EMAIL_BACKEND=console # use an SMTP server or display the emails in the console (either "smtp" or "console")
|
|
# EMAIL_HOST=smtp.host.example.com # SMTP server address
|
|
# EMAIL_PORT=587 # default SMTP port
|
|
# EMAIL_HOST_USER=user # user to connect the SMTP server
|
|
# EMAIL_HOST_PASSWORD=password # SMTP user's password
|
|
# EMAIL_DEFAULT_FROM=changeme@example.com # default email address for the automated emails
|
|
# EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive (only set one of those to True)
|
|
# EMAIL_USE_TLS=True # use TLS (secure) connection with the SMTP server
|
|
# EMAIL_USE_SSL=False # use implicit TLS (secure) connection with the SMTP server |