diff options
author | 2022-07-20 12:25:06 +0200 | |
---|---|---|
committer | 2022-07-20 12:25:06 +0200 | |
commit | 40f91d052c1bbdd3121c8fd2bde687853a7bed5a (patch) | |
tree | 0dcdf3a4817b24f9f2d7947dcc3202a476df61e3 /docs/configuration | |
parent | [docs] Fix typo in funding.yml (#722) (diff) | |
download | gotosocial-40f91d052c1bbdd3121c8fd2bde687853a7bed5a.tar.xz |
[chore] Update image/video size defaults to mastodon's (#723)
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/media.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/configuration/media.md b/docs/configuration/media.md index 7e701cc7a..4adb3bedf 100644 --- a/docs/configuration/media.md +++ b/docs/configuration/media.md @@ -11,13 +11,13 @@ # Int. Maximum allowed image upload size in bytes. # Examples: [2097152, 10485760] -# Default: 2097152 -- aka 2MB -media-image-max-size: 2097152 +# Default: 10485760 -- aka 10MB +media-image-max-size: 10485760 # Int. Maximum allowed video upload size in bytes. # Examples: [2097152, 10485760] -# Default: 10485760 -- aka 10MB -media-video-max-size: 10485760 +# Default: 41943040 -- aka 40MB +media-video-max-size: 41943040 # Int. Minimum amount of characters required as an image or video description. # Examples: [500, 1000, 1500] |