溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php配置文件是什么

發(fā)布時間:2020-10-19 15:48:13 來源:億速云 閱讀:181 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關php配置文件是什么,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

與nginx搭配使用的php,有三個配置文件:php.ini、php-fpm.conf、www.conf。

php.ini是php運行時的核心配置。CLI形式、php-fpm模式下的PHP進程,都讀取php.ini中的配置項。

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動態(tài)庫
zend_extension=opcache.so
extension=mysqli.so
extension=pdo_mysql.so

######設置PHP的時區(qū)
date.timezone = PRC

######開啟opcache
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1

######設置PHP腳本允許訪問的目錄(需要根據(jù)實際情況配置)
;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 = www
group = 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) / 2
pm.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')獲取環(huán)境變量的值
; Default Value: clean env
;env[HOSTNAME] = $HOSTNAME
;env[PATH] = /usr/local/bin:/usr/bin:/bin
;env[TMP] = /tmp
;env[TMPDIR] = /tmp
env[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] = on
php_admin_value[memory_limit] = 32M

關于php配置文件是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

php
AI