PHP优化

配置文件php-fpm.conf:

 

slowlog = "/mnt/log/slow.log"

##在同一时间最大的进程数
pm.max_children = 500
##启动时开启的等待请求到来的进程数
pm.start_servers = 80
##在空闲状态下,运行的最小进程数,如果小于此值,会创建新的进程
pm.min_spare_servers = 80
##在空闲状态下,运行的最大进程数,如果大于此值,会kill部分进程
pm.max_spare_servers = 120
##空闲多少秒之后进程会被kill,默认为10s
pm.process_idle_timeout = 60s
##慢日志查询记录 
request_slowlog_timeout=6

 

error_log = /mnt/log/php-fpm/log/php_error_log

 

php.ini中配置:

log_errors = On

error_log = "/mnt/log/error_log"

error_reporting=E_ALL&~E_NOTICE

你可能感兴趣的:(Linux运维)