mirror of
https://git.cloudron.io/cloudron/mastodon-app.git
synced 2024-11-21 15:20:59 +00:00
51 lines
999 B
Text
51 lines
999 B
Text
# https://github.com/tootsuite/mastodon/blob/master/.env.production.sample
|
|
|
|
# Federation
|
|
# ----------
|
|
# This identifies your server and cannot be changed safely later
|
|
# ----------
|
|
LOCAL_DOMAIN=example.com
|
|
|
|
# Use this only if you need to run mastodon on a different domain than the one used for federation.
|
|
# Cloudron: this will change automatically when you change the app's location in Cloudron dashboard
|
|
WEB_DOMAIN=
|
|
|
|
# Database configuration
|
|
DB_HOST=
|
|
DB_PORT=
|
|
DB_NAME=
|
|
DB_USER=
|
|
DB_PASS=
|
|
|
|
# Service dependencies
|
|
REDIS_HOST=
|
|
REDIS_PORT=
|
|
REDIS_PASSWORD=
|
|
|
|
# E-mail configuration
|
|
SMTP_SERVER=
|
|
SMTP_PORT=
|
|
SMTP_FROM_ADDRESS=
|
|
SMTP_LOGIN=
|
|
SMTP_PASSWORD=
|
|
SMTP_AUTH_METHOD=plain
|
|
SMTP_OPENSSL_VERIFY_MODE=none
|
|
|
|
# SSO configuration
|
|
LDAP_ENABLED=
|
|
LDAP_HOST=
|
|
LDAP_PORT=
|
|
LDAP_BASE=
|
|
LDAP_BIND_DN=
|
|
LDAP_PASSWORD=
|
|
LDAP_UID=username
|
|
LDAP_SEARCH_FILTER=(|(%{uid}=%{email})(mail=%{email}))
|
|
LDAP_METHOD=plain
|
|
|
|
# Application secrets
|
|
SECRET_KEY_BASE=
|
|
OTP_SECRET=
|
|
|
|
# Optionally change default language
|
|
# DEFAULT_LOCALE=de
|
|
|