ini changes from upstream
This commit is contained in:
parent
2ab121573e
commit
8faf123679
@ -115,7 +115,12 @@ opcache.blacklist_filename=/etc/php.d/opcache*.blacklist
|
|||||||
;opcache.file_cache_fallback=1
|
;opcache.file_cache_fallback=1
|
||||||
|
|
||||||
; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
|
; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
|
||||||
; This should improve performance, but requires appropriate OS configuration.
|
; Under certain circumstances (if only a single global PHP process is
|
||||||
|
; started from which all others fork), this can increase performance
|
||||||
|
; by a tiny amount because TLB misses are reduced. On the other hand, this
|
||||||
|
; delays PHP startup, increases memory usage and degrades performance
|
||||||
|
; under memory pressure - use with care.
|
||||||
|
; Requires appropriate OS configuration.
|
||||||
opcache.huge_code_pages=0
|
opcache.huge_code_pages=0
|
||||||
|
|
||||||
; Validate cached file permissions.
|
; Validate cached file permissions.
|
||||||
|
5
php.ini
5
php.ini
@ -425,6 +425,11 @@ max_input_time = 60
|
|||||||
; How many GET/POST/COOKIE input variables may be accepted
|
; How many GET/POST/COOKIE input variables may be accepted
|
||||||
;max_input_vars = 1000
|
;max_input_vars = 1000
|
||||||
|
|
||||||
|
; How many multipart body parts (combined input variable and file uploads) may
|
||||||
|
; be accepted.
|
||||||
|
; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
|
||||||
|
;max_multipart_body_parts = 1500
|
||||||
|
|
||||||
; Maximum amount of memory a script may consume
|
; Maximum amount of memory a script may consume
|
||||||
; https://php.net/memory-limit
|
; https://php.net/memory-limit
|
||||||
memory_limit = 128M
|
memory_limit = 128M
|
||||||
|
Loading…
Reference in New Issue
Block a user