Bump the maximum upload size to 50MB instead of 4MB

This should please the design team and tbh, also help uploading tarballs of
pagure to pagure.io
This commit is contained in:
Pierre-Yves Chibon 2016-11-15 16:30:11 +01:00
parent 39b67e2c6e
commit 3bd22be340

View file

@ -143,7 +143,7 @@ ITEM_PER_PAGE = 50
### Maximum size of the uploaded content
# Used to limit the size of file attached to a ticket for example
MAX_CONTENT_LENGTH = 4 * 1024 * 1024 # 4 megabytes
MAX_CONTENT_LENGTH = 50 * 1024 * 1024 # 50 megabytes
### Lenght for short commits ids or file hex
SHORT_LENGTH = 7