Created
January 29, 2013 06:39
-
-
Save youyo/4662301 to your computer and use it in GitHub Desktop.
/etc/php-fpm.d/php_zabbix.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[zabbix] | |
listen = /var/run/php-fpm/zabbix.socket | |
;listen.backlog = -1 | |
listen.allowed_clients = 127.0.0.1 | |
;listen.owner = nobody | |
;listen.group = nobody | |
;listen.mode = 0666 | |
user = nginx | |
group = nginx | |
pm = dynamic | |
pm.max_children = 10 | |
pm.start_servers = 4 | |
pm.min_spare_servers = 2 | |
pm.max_spare_servers = 4 | |
;pm.max_requests = 500 | |
;pm.status_path = /status | |
;ping.path = /ping | |
;ping.response = pong | |
;request_terminate_timeout = 0 | |
;request_slowlog_timeout = 0 | |
slowlog = /var/log/php-fpm/zabbix-slow.log | |
;rlimit_files = 1024 | |
;rlimit_core = 0 | |
;chroot = | |
;chdir = /var/www | |
;catch_workers_output = yes | |
;security.limit_extensions = .php .php3 .php4 .php5 | |
;env[HOSTNAME] = $HOSTNAME | |
;env[PATH] = /usr/local/bin:/usr/bin:/bin | |
;env[TMP] = /tmp | |
;env[TMPDIR] = /tmp | |
;env[TEMP] = /tmp | |
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f [email protected] | |
;php_flag[display_errors] = off | |
php_admin_value[error_log] = /var/log/php-fpm/zabbix-error.log | |
php_admin_flag[log_errors] = on | |
;php_admin_value[memory_limit] = 32M |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment