瀏覽代碼

Merge pull request #6847 from patschi/disable-opcache-jit

Disable PHP opcache.jit
FreddleSpl0it 5 天之前
父節點
當前提交
04d5c43550
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      data/conf/phpfpm/php-conf.d/opcache-recommended.ini

+ 4 - 3
data/conf/phpfpm/php-conf.d/opcache-recommended.ini

@@ -7,9 +7,10 @@ opcache.interned_strings_buffer=16
 opcache.max_accelerated_files=10000
 opcache.memory_consumption=128
 opcache.save_comments=1
-opcache.revalidate_freq=120
 opcache.validate_timestamps=0
 
 ; JIT
-opcache.jit=1255
-opcache.jit_buffer_size=8M
+; Disabled for now due to some PHP segmentation faults observed
+; in certain environments. Possibly some PHP or PHP extension bug.
+opcache.jit=disable
+opcache.jit_buffer_size=0