diff options
Diffstat (limited to '.env.production.sample')
-rw-r--r-- | .env.production.sample | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.env.production.sample b/.env.production.sample index 65f3f9d1f..7de5e00f4 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -4,6 +4,12 @@ # 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 @@ -50,11 +56,14 @@ DB_PASS= DB_PORT=5432 -# ElasticSearch (optional) +# Elasticsearch (optional) # ------------------------ #ES_ENABLED=true #ES_HOST=localhost #ES_PORT=9200 +# Authentication for ES (optional) +#ES_USER=elastic +#ES_PASS=password # Secrets @@ -276,3 +285,7 @@ MAX_POLL_OPTION_CHARS=100 # Units are in bytes MAX_EMOJI_SIZE=51200 MAX_REMOTE_EMOJI_SIZE=204800 + +# Optional hCaptcha support +# HCAPTCHA_SECRET_KEY= +# HCAPTCHA_SITE_KEY= |