;pid = run/php-fpm.pid 設(shè)置pid文件的位置,默認(rèn)目錄路徑 /usr/local/php/var
;error_log = log/php-fpm.log 記錄錯誤日志的文件糟需,默認(rèn)目錄路徑 /usr/local/php/var
;syslog.facility = daemon 用于指定什么類型的程序日志消息卡啰。
;syslog.ident = php-fpm 用于FPM多實(shí)例甄別
;log_level = notice 記錄日志的等級,默認(rèn)notice,可取值alert, error, warning, notice, debug
;emergency_restart_threshold = 0 如果子進(jìn)程在這個時間段內(nèi)帶有IGSEGV或SIGBUS退出惩阶,則重啟fpm,默認(rèn)0表示關(guān)閉這個功能
;emergency_restart_interval = 0 設(shè)置時間間隔來決定服務(wù)的初始化時間(默認(rèn)單位:s秒)扣汪,可選s秒断楷,m分,h時崭别,d天
;process_control_timeout = 0 子進(jìn)程等待master進(jìn)程對信號的回應(yīng)(默認(rèn)單位:s秒)冬筒,可選s秒恐锣,m分,h時舞痰,d天
; process.max = 128 控制最大進(jìn)程數(shù)土榴,使用時需謹(jǐn)慎
; process.priority = -19 處理nice(2)的進(jìn)程優(yōu)先級別-19(最高)到20(最低)
;rlimit_files = 1024 設(shè)置主進(jìn)程文件描述符rlimit的數(shù)量
;rlimit_core = 0 設(shè)置主進(jìn)程rlimit最大核數(shù)
;events.mechanism = epoll 使用處理event事件的機(jī)制
; - select (any POSIX os)
; - poll (any POSIX os)
; - epoll (linux >= 2.5.44)
; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
; - /dev/poll (Solaris >= 7)
; - port (Solaris >= 10)
;daemonize = yes 將fpm轉(zhuǎn)至后臺運(yùn)行,如果設(shè)置為“no”响牛,那么fpm會運(yùn)行在前臺
;systemd_interval = 10
[www]
; It only applies on the following directives:
; - 'access.log'
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
; - 'chdir'
; - 'php_values'
; - 'php_admin_values'
;prefix = /path/to/pools/$pool 如果沒有制定玷禽,將使用全局prefix替代
user = nobody 進(jìn)程的發(fā)起用戶和用戶組,用戶user是必須設(shè)置呀打,group不是
group = nobody
listen = 127.0.0.1:9000 監(jiān)聽ip和端口
;listen.backlog = 65535 設(shè)置listen(2)函數(shù)backlog
;listen.owner = nobody
;listen.group = nobody
;listen.mode = 0660
;listen.acl_users =
;listen.acl_groups =
;listen.allowed_clients = 127.0.0.1 允許FastCGI客戶端連接的IPv4地址矢赁,多個地址用','分隔,為空則允許任何地址發(fā)來鏈接請求
; process.priority = -19
pm = dynamic 選擇進(jìn)程池管理器如何控制子進(jìn)程的數(shù)量
static: 對于子進(jìn)程的開啟數(shù)路給定一個鎖定的值(pm.max_children)
dynamic: 子進(jìn)程的數(shù)目為動態(tài)的贬丛,它的數(shù)目基于下面的指令的值(以下為dynamic適用參數(shù))
pm.max_children: 同一時刻能夠存貨的最大子進(jìn)程的數(shù)量
pm.start_servers: 在啟動時啟動的子進(jìn)程數(shù)量
pm.min_spare_servers: 處于空閑"idle"狀態(tài)的最小子進(jìn)程撩银,如果空閑進(jìn)程數(shù)量小于這個值,那么相應(yīng)的子進(jìn)程會被創(chuàng)建
pm.max_spare_servers: 最大空閑子進(jìn)程數(shù)量豺憔,空閑子進(jìn)程數(shù)量超過這個值蜒蕾,那么相應(yīng)的子進(jìn)程會被殺掉。
ondemand: 在啟動時不會創(chuàng)建焕阿,只有當(dāng)發(fā)起請求鏈接時才會創(chuàng)建(pm.max_children, pm.process_idle_timeout)
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
;pm.process_idle_timeout = 10s; 空閑進(jìn)程超時時間
;pm.max_requests = 500 在派生新的子進(jìn)程前咪啡,每一個子進(jìn)程應(yīng)該處理的請求數(shù)目,在第三方庫中解決內(nèi)存溢出很有用暮屡,設(shè)置為0則不會限制
;pm.status_path = /status 配置一個URI撤摸,以便查看fpm狀態(tài)頁
狀態(tài)頁描述:
accepted conn: 該進(jìn)程池接受的請求數(shù)量
pool: 進(jìn)程池的名字
process manager: 進(jìn)程管理,就是配置中pm指令褒纲,可以選擇值static准夷,dynamic,ondemand
idle processes: 空閑進(jìn)程數(shù)量
active processes: 當(dāng)前活躍的進(jìn)程數(shù)量
total processes: 總的進(jìn)程數(shù)量=idle+active
max children reached: 達(dá)到最大子進(jìn)程的次數(shù)莺掠,達(dá)到進(jìn)程的限制衫嵌,當(dāng)pm試圖開啟更多的子進(jìn)程的時候(僅當(dāng)pm工作在dynamic時)
;ping.path = /ping 該ping URI將會去調(diào)用fpm監(jiān)控頁面,如果這個沒有設(shè)置彻秆,那么不會有URI被做為ping頁
;ping.response = pong 用于定制平請求的響應(yīng)楔绞,響應(yīng)的格式text/plain(對200響應(yīng)代碼)
;access.log = log/$pool.access.log
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
; The following syntax is allowed
; %%: the '%' character
; %C: %CPU used by the request
; it can accept the following format:
; - %{user}C for user CPU only
; - %{system}C for system CPU only
; - %{total}C for user + system CPU (default)
; %d: time taken to serve the request
; it can accept the following format:
; - %{seconds}d (default)
; - %{miliseconds}d
; - %{mili}d
; - %{microseconds}d
; - %{micro}d
; %e: an environment variable (same as $_ENV or $_SERVER)
; it must be associated with embraces to specify the name of the env
; variable. Some exemples:
; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
; %f: script filename
; %l: content-length of the request (for POST request only)
; %m: request method
; %M: peak of memory allocated by PHP
; it can accept the following format:
; - %{bytes}M (default)
; - %{kilobytes}M
; - %{kilo}M
; - %{megabytes}M
; - %{mega}M
; %n: pool name
; %o: output header
; it must be associated with embraces to specify the name of the header:
; - %{Content-Type}o
; - %{X-Powered-By}o
; - %{Transfert-Encoding}o
; - ....
; %p: PID of the child that serviced the request
; %P: PID of the parent of the child that serviced the request
; %q: the query string
; %Q: the '?' character if query string exists
; %r: the request URI (without the query string, see %q and %Q)
; %R: remote IP address
; %s: status (response code)
; %t: server time the request was received
; it can accept a strftime(3) format:
; %d/%b/%Y:%H:%M:%S %z (default)
; %T: time the log has been written (the request has finished)
; it can accept a strftime(3) format:
; %d/%b/%Y:%H:%M:%S %z (default)
; %u: remote user
;slowlog = log/$pool.log.slow 用于記錄慢請求
;request_slowlog_timeout = 0 慢日志請求超時時間,對一個php程序進(jìn)行跟蹤唇兑。
;request_terminate_timeout = 0 終止請求超時時間酒朵,在worker進(jìn)程被殺掉之后,提供單個請求的超時間隔扎附。由于某種原因不停止腳本執(zhí)行時蔫耽,應(yīng)該使用該選項(xiàng),0表示關(guān)閉不啟用
(在php.ini中留夜,max_execution_time 一般設(shè)置為30匙铡,表示每一個腳本的最大執(zhí)行時間)
;rlimit_files = 1024 設(shè)置打開文件描述符的限制
;rlimit_core = 0 設(shè)置內(nèi)核對資源的使用限制图甜,用于內(nèi)核轉(zhuǎn)儲
;chroot = 設(shè)置chroot路徑,程序一啟動就將其chroot放置到指定的目錄下鳖眼,該指令值必須是一個絕對路徑
;chdir = /var/www 在程序啟動時將會改變到指定的位置(這個是相對路徑黑毅,相對當(dāng)前路徑或chroot后的“/”目錄)
;catch_workers_output = yes 將worker的標(biāo)準(zhǔn)輸出和錯誤輸出重定向到主要的錯誤日志記錄中,如果沒有設(shè)置具帮,根據(jù)FastCGI的指定博肋,將會被重定向到/dev/null上
;clear_env = no 清理環(huán)境
;security.limit_extensions = .php .php3 .php4 .php5 限制FPM執(zhí)行解析的擴(kuò)展名
;env[HOSTNAME] = $HOSTNAME
;env[PATH] = /usr/local/bin:/usr/bin:/bin
;env[TMP] = /tmp
;env[TMPDIR] = /tmp
;env[TEMP] = /tmp
; Additional php.ini defines, specific to this pool of workers. These settings
; overwrite the values previously defined in the php.ini. The directives are the
; same as the PHP SAPI:
; php_value/php_flag - you can set classic ini defines which can
; be overwritten from PHP call 'ini_set'.
; php_admin_value/php_admin_flag - these directives won't be overwritten by
; PHP call 'ini_set'
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
; Defining 'extension' will load the corresponding shared extension from
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
; overwrite previously defined php.ini values, but will append the new value
; instead.
;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-fpm的配置文件中,有兩個指令非常重要蜂厅,就是"pm.max_children" 和 "request_terminate_timeout"
第一個指令"pm.max_children" 確定了php-fpm的處理能力匪凡,原則上時越多越好,但這個是在內(nèi)存足夠打的前提下掘猿,每開啟一個php-fpm進(jìn)程要占用近30M左右的內(nèi)存
如果請求訪問較多病游,那么可能會出現(xiàn)502,504錯誤稠通。對于502錯誤來說衬衬,屬于繁忙進(jìn)程而造成的,對于504來說改橘,就是客戶發(fā)送的請求在限定的時間內(nèi)沒有得到相應(yīng)滋尉,過多的請求導(dǎo)致“504 Gateway Time-out”。這里也有可能是服務(wù)器帶寬問題飞主。
另外一個需要注意的指令"request_terminate_timeout"狮惜,它決定php-fpm進(jìn)程的連接/發(fā)送和讀取的時間,如果設(shè)置過小很容易出現(xiàn)"502 Bad Gateway" 和 “504 Gateway Time-out”碌识,默認(rèn)為0碾篡,就是說沒有啟用,不加限制筏餐,但是這種設(shè)置前提是你的php-fpm足夠健康开泽,這個需要根據(jù)實(shí)際情況加以限定。