Default file size to 100MB

This commit is contained in:
qorg11 2020-11-26 21:57:53 +01:00
parent bb3ac7f248
commit 100c1666f3
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ $size = $ENV{CONTENT_LENGTH};
# Configuration
our $MAX_SIZE = 1024*1024*10; # Change for your size
our $MAX_SIZE = 1024*1024*100; # Change for your size
our $MAX_SIZE_MB = $MAX_SIZE / 1024 / 1024; # Don't change this
our @not_allowed_extensions = qw(sh out exe);