diff options
Diffstat (limited to '.env.production.sample')
-rw-r--r-- | .env.production.sample | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.env.production.sample b/.env.production.sample index e041e0a04..1292b752e 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -89,6 +89,11 @@ SMTP_FROM_ADDRESS=notifications@example.com # Access-Control-Allow-Origin: https://example.com/ # CDN_HOST=https://assets.example.com +# Optional list of hosts that are allowed to serve media for your instance +# This is useful if you include external media in your custom CSS or about page, +# or if your data storage provider makes use of redirects to other domains. +# EXTRA_DATA_HOSTS=https://data.example1.com|https://data.example2.com + # S3 (optional) # The attachment host must allow cross origin request from WEB_DOMAIN or # LOCAL_DOMAIN if WEB_DOMAIN is not set. For example, the server may have the @@ -168,6 +173,31 @@ STREAMING_CLUSTER_NUM=1 # If you use Docker, you may want to assign UID/GID manually. # UID=1000 # GID=1000 + +# Maximum allowed character count +# MAX_TOOT_CHARS=500 + +# Maximum number of pinned posts +# MAX_PINNED_TOOTS=5 + +# Maximum allowed bio characters +# MAX_BIO_CHARS=500 + +# Maximim number of profile fields allowed +# MAX_PROFILE_FIELDS=4 + +# Maximum allowed display name characters +# MAX_DISPLAY_NAME_CHARS=30 + +# Maximum image and video/audio upload sizes +# Units are in bytes +# 1048576 bytes equals 1 megabyte +# MAX_IMAGE_SIZE=8388608 +# MAX_VIDEO_SIZE=41943040 + +# Maximum search results to display +# Only relevant when elasticsearch is installed +# MAX_SEARCH_RESULTS=20 # LDAP authentication (optional) # LDAP_ENABLED=true |