Increase max file upload size to 100MB

This commit is contained in:
Adam Goldsmith 2020-06-25 02:35:53 -04:00
parent 5123c1de1f
commit b9798b539c
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,7 @@ services:
- ./images:/var/www/html/images - ./images:/var/www/html/images
- ./LocalSettings.php:/var/www/html/LocalSettings.php:ro - ./LocalSettings.php:/var/www/html/LocalSettings.php:ro
- ./secrets.php:/var/www/html/secrets.php:ro - ./secrets.php:/var/www/html/secrets.php:ro
- ./uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:ro
database: database:
image: mariadb image: mariadb
restart: always restart: always

3
uploads.ini Normal file
View File

@ -0,0 +1,3 @@
upload_max_filesize = 100M
post_max_size = 101M
max_execution_time = 300