mirror of
https://github.com/laravel/valet.git
synced 2026-02-05 00:20:08 +01:00
- Sets `client_max_body_size 128M` in `http` section of `nginx.conf` so it covers all configs - Adds `php-memory-limits.conf` to `php-fpm` conf folder, to set `memory_limit`, `upload_max_filesize`, `post_max_size` all to 128M (Updates #253 by moving config location to cover all, since #253 didn't cover secure configs, etc)
9 lines
285 B
INI
9 lines
285 B
INI
; Max memory per instance
|
|
memory_limit = 128M
|
|
|
|
;The maximum size of an uploaded file.
|
|
upload_max_filesize = 128M
|
|
|
|
;Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize
|
|
post_max_size = 128M
|