diff options
author | Lumb <lumb@git.multiple-creature.party> | 2019-06-20 09:48:33 +0000 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2019-07-17 07:08:14 +0000 |
commit | 05980a56d230a5356ce292558e2f5a8a96ec2ef5 (patch) | |
tree | b907bcb4eddf4734f0167e55612f917b26c92938 | |
parent | 2597f31daf08dbc27f472e8117a900616b8da794 (diff) |
update size limits in env sample
Updated video and image size limit var to reflect monsterpits implementation, added gif size limit var
-rw-r--r-- | .env.production.sample | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.env.production.sample b/.env.production.sample index c13dc8bc1..f44fb6824 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -167,10 +167,12 @@ STREAMING_CLUSTER_NUM=1 # 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 +# Units are in megabytes +# MAX_SIZE_LIMIT=66 + +# Maximum gif size limit +# Units are in kilobytes +# MAX_GIF_SIZE=333 # Maximum length of audio uploads in seconds # MAX_AUDIO_LENGTH=60 |