| 1 |
; Raise limits so folder uploads with many files aren't truncated. |
| 2 |
; NOTE: .user.ini is read by PHP-FPM / CGI / FastCGI (this is how cPanel runs |
| 3 |
; PHP), but is IGNORED when PHP runs as an Apache module (mod_php). If your |
| 4 |
; local MAMP uses mod_php, set the same values in php.ini instead, or add |
| 5 |
; `php_value` lines to .htaccess. |
| 6 |
|
| 7 |
max_file_uploads = 200 ; max number of files per upload request |
| 8 |
upload_max_filesize = 64M ; per-file cap (also enforced by MAX_FILE_SIZE); must fit a whole-repo .zip |
| 9 |
post_max_size = 128M ; total request size (must exceed the sum of files) |
| 10 |
|