diff options
author | Lady Lumb <42786600+LadyLumb@users.noreply.github.com> | 2019-06-02 05:36:02 -0700 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-06-02 14:38:13 +0200 |
commit | da7bcf29d4cb36d96477b08099cd57021717c326 (patch) | |
tree | 07b189ac55ce82055a4c8fc76fe13e4d86b33362 | |
parent | a7b4e7efdd4849e1135fda585655eb9d2d01d60f (diff) |
Fixed the very wrong byte to megabyte conversion
-rw-r--r-- | .env.production.sample | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.env.production.sample b/.env.production.sample index db5fa0853..8e15d6bcd 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -162,9 +162,9 @@ STREAMING_CLUSTER_NUM=1 # Maximum image and video upload sizes # Units are in bytes -# 1024 bytes equals 1 megabyte -# MAX_IMAGE_SIZE=8192 -# MAX_VIDEO_SIZE=40960 +# 1048576 bytes equals 1 megabyte +# MAX_IMAGE_SIZE=8388608 +# MAX_VIDEO_SIZE=41943040 # LDAP authentication (optional) # LDAP_ENABLED=true |