87 lines
2.7 KiB
Django/Jinja
87 lines
2.7 KiB
Django/Jinja
# This is a sample configuration file. You can generate your configuration
|
|
# with the `rake mastodon:setup` interactive setup wizard, but to customize
|
|
# your setup even further, you'll need to edit it manually. This sample does
|
|
# not demonstrate all available configuration options. Please look at
|
|
# https://docs.joinmastodon.org/admin/config/ for the full documentation.
|
|
|
|
# Note that this file accepts slightly different syntax depending on whether
|
|
# you are using `docker-compose` or not. In particular, if you use
|
|
# `docker-compose`, the value of each declared variable will be taken verbatim,
|
|
# including surrounding quotes.
|
|
# See: https://github.com/mastodon/mastodon/issues/16895
|
|
|
|
# Federation
|
|
# ----------
|
|
# This identifies your server and cannot be changed safely later
|
|
# ----------
|
|
LOCAL_DOMAIN={{ mastodon_domain }}
|
|
{% if mastodon_web_domain|default(false, true) %}
|
|
WEB_DOMAIN={{ mastodon_web_domain }}
|
|
{% endif %}
|
|
|
|
# Redis
|
|
# -----
|
|
{% if mastodon_redis_host|default(false, true) %}
|
|
REDIS_HOST={{ mastodon_redis_host }}
|
|
{% endif %}
|
|
{% if mastodon_redis_port|default(false, true) %}
|
|
REDIS_PORT={{ mastodon_redis_port }}
|
|
{% endif %}
|
|
{% if mastodon_redis_url %}
|
|
REDIS_URL={{ mastodon_redis_url }}
|
|
{% endif %}
|
|
{% if mastodon_redis_password %}
|
|
REDIS_PASSWORD={{ mastodon_redis_password }}
|
|
{% endif %}
|
|
{% if mastodon_redis_db_index %}
|
|
REDIS_DB_INDEX={{ mastodon_redis_db_index }}
|
|
{% endif %}
|
|
|
|
# PostgreSQL
|
|
# ----------
|
|
DB_HOST={{ mastodon_database_host }}
|
|
DB_USER={{ mastodon_database_user }}
|
|
DB_NAME={{ mastodon_database_name }}
|
|
DB_PASS={{ mastodon_database_pass }}
|
|
DB_PORT={{ mastodon_database_port }}
|
|
|
|
# Elasticsearch (optional)
|
|
# ------------------------
|
|
ES_ENABLED={{ mastodon_elasticsearch_enabled }}
|
|
ES_HOST={{ mastodon_elasticsearch_host }}
|
|
ES_PORT={{ mastodon_elasticsearch_port }}
|
|
# Authentication for ES (optional)
|
|
ES_USER={{ mastodon_elasticsearch_user }}
|
|
ES_PASS={{ mastodon_elasticsearch_pass }}
|
|
|
|
# Secrets
|
|
# -------
|
|
# Make sure to use `rake secret` to generate secrets
|
|
# -------
|
|
SECRET_KEY_BASE={{ mastodon_secret_key }}
|
|
OTP_SECRET={{ mastodon_otp_secret }}
|
|
|
|
# Web Push
|
|
# --------
|
|
# Generate with `rake mastodon:webpush:generate_vapid_key`
|
|
# --------
|
|
VAPID_PRIVATE_KEY={{ mastodon_vapid_private_key }}
|
|
VAPID_PUBLIC_KEY={{ mastodon_vapid_public_key }}
|
|
|
|
# Sending mail
|
|
# ------------
|
|
SMTP_SERVER={{ mastodon_mail_server }}
|
|
SMTP_PORT={{ mastodon_mail_port }}
|
|
SMTP_LOGIN={{ mastodon_mail_user }}
|
|
SMTP_PASSWORD={{ mastodon_mail_password }}
|
|
SMTP_FROM_ADDRESS={{ mastodon_mail_from_address }}
|
|
|
|
# File storage (optional)
|
|
# -----------------------
|
|
S3_ENABLED={{ mastodon_s3_enabled }}
|
|
S3_BUCKET={{ mastodon_s3_bucket }}
|
|
AWS_ACCESS_KEY_ID={{ mastodon_s3_aws_access_key_id }}
|
|
AWS_SECRET_ACCESS_KEY={{ mastodon_s3_aws_secret_access_key }}
|
|
S3_ALIAS_HOST={{ mastodon_s3_alias_host }}
|
|
|