diff options
author | Lady Lumb <42786600+LadyLumb@users.noreply.github.com> | 2019-06-02 05:36:02 -0700 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-19 16:09:35 -0600 |
commit | 5dc85696b7aef0a787bff813b442ea9dbb96f046 (patch) | |
tree | a714b91009637f849c9e9205c5a14f350ae4d115 | |
parent | 4c68731adf3a5027dc715f2f58dbdce8f6736f05 (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 3f67a670c..11b46a736 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -168,9 +168,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 |