Skip to content

Commit

Permalink
Opcache module disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed Aug 23, 2024
1 parent cf8f808 commit 1d7e847
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
16 changes: 13 additions & 3 deletions php/8.2/conf.d/custom.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,22 @@ memory_limit = 256M

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 200M
upload_max_filesize = 5G

; Sets max size of post data allowed.
; http://php.net/post-max-size
post_max_size = 200M
post_max_size = 5G

max_execution_time=600
default_socket_timeout=3600
request_terminate_timeout=600
request_terminate_timeout=600

[opcache]
opcache.enable=0
opcache.memory_consumption=512
opcache.interned_strings_buffer=64
opcache.max_accelerated_files=32531
opcache.save_comments=1
opcache.fast_shutdown=0
opcache.enable_cli=1
opcache.validate_timestamps=0
16 changes: 13 additions & 3 deletions php/8.3/conf.d/custom.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,22 @@ memory_limit = 256M

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 200M
upload_max_filesize = 5G

; Sets max size of post data allowed.
; http://php.net/post-max-size
post_max_size = 200M
post_max_size = 5G

max_execution_time=600
default_socket_timeout=3600
request_terminate_timeout=600
request_terminate_timeout=600

[opcache]
opcache.enable=0
opcache.memory_consumption=512
opcache.interned_strings_buffer=64
opcache.max_accelerated_files=32531
opcache.save_comments=1
opcache.fast_shutdown=0
opcache.enable_cli=1
opcache.validate_timestamps=0

0 comments on commit 1d7e847

Please sign in to comment.