Increase php limits
This commit is contained in:
parent
e94f1a04b5
commit
19b584408d
3 changed files with 11 additions and 9 deletions
|
|
@ -1,13 +1,14 @@
|
|||
; File Uploads up to 250 MB
|
||||
; Seems to be reasonable compromise between the default (2MB) and maximum available space
|
||||
; File Uploads up to 1GB
|
||||
file_uploads = On
|
||||
upload_max_filesize = 250M
|
||||
post_max_size = 250M
|
||||
upload_max_filesize = 1000M
|
||||
post_max_size = 1000M
|
||||
|
||||
; Composer uses an absurd amount of memory
|
||||
; 4GB ought to be enough
|
||||
memory_limit = 4G
|
||||
|
||||
; If execution time turns out to be a problem
|
||||
; we should uncomment this
|
||||
; max_execution_time = 600
|
||||
; Increase various limits for some long running WissKI operations
|
||||
max_execution_time = 3000
|
||||
max_input_time = 600
|
||||
max_input_nesting_level = 640
|
||||
max_input_vars = 10000
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue