diff options
author | Lumb <lumb@git.multiple-creature.party> | 2019-06-20 09:38:46 +0000 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2019-07-17 07:08:14 +0000 |
commit | 5a93e171db3f28663ea23e8442dd5abf6674a435 (patch) | |
tree | 8e662161ef6230e888e95e26a678c1c8fd1e2c91 | |
parent | 4695ab5db99c952370d46124674e4ca8dcd22658 (diff) |
add vars to sample env
Adding vars to the sample env for profile fields, display name characters, max image and video size, and max audio clip length
-rw-r--r-- | .env.production.sample | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.env.production.sample b/.env.production.sample index 4c0ff7ccd..3fd1c3f96 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -160,6 +160,21 @@ STREAMING_CLUSTER_NUM=1 # Maximum number of pinned posts # MAX_PINNED_TOOTS=10 +# Maximim number of profile fields allowed +# MAX_PROFILE_FIELDS=4 + +# Maximum allowed display name characters +# MAX_DISPLAY_NAME_CHARS=30 + +# Maximum image and video upload sizes +# Units are in bytes +# 1048576 bytes equals 1 megabyte +# MAX_IMAGE_SIZE=8388608 +# MAX_VIDEO_SIZE=41943040 + +# Maximum length of audio uploads in seconds +# MAX_AUDIO_LENGTH=60 + # LDAP authentication (optional) # LDAP_ENABLED=true # LDAP_HOST=localhost |