您好,欢迎访问一九零五行业门户网

php配置文件有哪些

与nginx搭配使用的php,有三个配置文件:php.ini、php-fpm.conf、www.conf。
php.ini是php运行时的核心配置。cli形式、php-fpm模式下的php进程,都读取php.ini中的配置项。  (推荐学习:php视频教程)
php-fpm.conf 是php-fpm管理下的php进程的配置文件。该模式下运行的php进程,除读取php.ini中的配置项外,
还读取php-fpm.conf中的配置项。
www.conf 是 php-fpm.conf 的补充。
php.ini中的重要配置
######避免php信息暴露在http头中expose_php = off######避免暴露php错误信息display_errors = off######在关闭display_errors后开启php错误日志(路径在php-fpm.conf中配置)log_errors = on######设置php的扩展库路径extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20141001/"######设置php的opcache和mysql动态库zend_extension=opcache.soextension=mysqli.soextension=pdo_mysql.so######设置php的时区date.timezone = prc######开启opcache[opcache]; determines if zend opcache is enabledopcache.enable=1######设置php脚本允许访问的目录(需要根据实际情况配置);open_basedir = /usr/share/nginx/html;
php-fpm.conf中的重要配置
;php运行日志error_log=log/php-fpm.log;fpm使用的事件机制events.mechanism = epoll;php-fpm.conf的补充文件www.conf的路径include=/usr/cg/lnmp/php-7.0.13/etc/php-fpm.d/*.conf
www.conf的重要配置
;php-fpm运行的linux用户组和用户user = wwwgroup = www;接收fastcgi请求的地址listen = 127.0.0.1:9000; choose how the process manager will control the number of child processes.; possible values:; static - a fixed number (pm.max_children) of child processes;; dynamic - the number of child processes are set dynamically based on the; following directives. with this process management, there will be; always at least 1 children.; pm.max_children - the maximum number of children that can; be alive at the same time.; pm.start_servers - the number of children created on startup.; pm.min_spare_servers - the minimum number of children in 'idle'; state (waiting to process). if the number; of 'idle' processes is less than this; number then some children will be created.; pm.max_spare_servers - the maximum number of children in 'idle'; state (waiting to process). if the number; of 'idle' processes is greater than this; number then some children will be killed.; ondemand - no children are created at startup. children will be forked when; new requests will connect. the following parameter are used:; pm.max_children - the maximum number of children that; can be alive at the same time.; pm.process_idle_timeout - the number of seconds after which; an idle process will be killed.; note: this value is mandatory.pm = dynamic; the number of child processes to be created when pm is set to 'static' and the; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.; this value sets the limit on the number of simultaneous requests that will be; served. equivalent to the apachemaxclients directive with mpm_prefork.; equivalent to the php_fcgi_children environment variable in the original php; cgi. the below defaults are based on a server without much resources. don't; forget to tweak pm.* to fit your needs.; note: used when pm is set to 'static', 'dynamic' or 'ondemand'; note: this value is mandatory.pm.max_children = 5; the number of child processes created on startup.; note: used only when pm is set to 'dynamic'; default value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2pm.start_servers = 2; the desired minimum number of idle server processes.; note: used only when pm is set to 'dynamic'; note: mandatory when pm is set to 'dynamic'pm.min_spare_servers = 1; the desired maximum number of idle server processes.; note: used only when pm is set to 'dynamic'; note: mandatory when pm is set to 'dynamic'pm.max_spare_servers = 3; the number of seconds after which an idle process will be killed.; note: used only when pm is set to 'ondemand'; default value: 10s;pm.process_idle_timeout = 10s;;php进程在回收前应该处理的请求;防止第三方库的内存泄漏pm.max_requests = 500;耗时长的php处理日志slowlog = log/$pool.log.slow;php慢日志的时间标准,最小单位是秒,0是未开启慢日志request_slowlog_timeout = 0; 可在php文件中通过getenv('temp')获取环境变量的值; default value: clean env;env[hostname] = $hostname;env[path] = /usr/local/bin:/usr/bin:/bin;env[tmp] = /tmp;env[tmpdir] = /tmpenv[temp] = /tmp; 覆盖php.ini中的对应配置;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com;php_flag[display_errors] = off;php_admin_value[error_log] = /var/log/fpm-php.www.log;php_admin_flag[log_errors] = onphp_admin_value[memory_limit] = 32m
以上就是php配置文件有哪些的详细内容。
其它类似信息

推荐信息