Default file size to 100MB
This commit is contained in:
parent
bb3ac7f248
commit
100c1666f3
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ $size = $ENV{CONTENT_LENGTH};
|
||||||
|
|
||||||
# Configuration
|
# 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 $MAX_SIZE_MB = $MAX_SIZE / 1024 / 1024; # Don't change this
|
||||||
our @not_allowed_extensions = qw(sh out exe);
|
our @not_allowed_extensions = qw(sh out exe);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue