Add 10mb upload limit
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-10-30 13:56:47 +01:00
parent 3faff06899
commit c897d91b3e
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 0 deletions

View File

@ -210,3 +210,6 @@ $wgFileExtensions = array(
'png', 'gif', 'jpg', 'jpeg', 'doc', 'xls', 'mpp', 'pdf', 'ppt', 'tiff',
'bmp', 'docx', 'xlsx', 'pptx', 'ps', 'odt', 'ods', 'odp', 'odg'
);
$wgUploadSizeWarning = 1000000000;
$wgMaxUploadSize = 1000000000;