Skip to content

Commit

Permalink
Merge pull request #35 from aviolaris/1.11.x
Browse files Browse the repository at this point in the history
The maximum allowed file size has been increased
  • Loading branch information
aviolaris authored May 31, 2023
2 parents 6c4138c + 9d0f6b1 commit 360f922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
app.secret_key = "secret_key"
# File settings
app.config['ALLOWED_EXTENSIONS'] = ['.zip']
app.config['MAX_CONTENT_LENGTH'] = 100 * 1024 * 1024
app.config['MAX_CONTENT_LENGTH'] = 1000 * 1024 * 1024
# Session settings
app.config["SESSION_PERMANENT"] = False
app.config["SESSION_TYPE"] = "filesystem"
Expand Down

0 comments on commit 360f922

Please sign in to comment.