????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.118.171.161 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/sapi/fpm/fpm/ |
Upload File : |
/* $Id: fpm_conf.h,v 1.12.2.2 2008/12/13 03:46:49 anight Exp $ */ /* (c) 2007,2008 Andrei Nigmatulin */ #ifndef FPM_CONF_H #define FPM_CONF_H 1 #include <stdint.h> #include "php.h" #define PM2STR(a) (a == PM_STYLE_STATIC ? "static" : (a == PM_STYLE_DYNAMIC ? "dynamic" : "ondemand")) #define FPM_CONF_MAX_PONG_LENGTH 64 struct key_value_s; struct key_value_s { struct key_value_s *next; char *key; char *value; }; /* * Please keep the same order as in fpm_conf.c and in php-fpm.conf.in */ struct fpm_global_config_s { char *pid_file; char *error_log; #ifdef HAVE_SYSLOG_H char *syslog_ident; int syslog_facility; #endif int log_level; int emergency_restart_threshold; int emergency_restart_interval; int process_control_timeout; int process_max; int process_priority; int daemonize; int rlimit_files; int rlimit_core; char *events_mechanism; #ifdef HAVE_SYSTEMD int systemd_watchdog; int systemd_interval; #endif }; extern struct fpm_global_config_s fpm_global_config; /* * Please keep the same order as in fpm_conf.c and in php-fpm.conf.in */ struct fpm_worker_pool_config_s { char *name; char *prefix; char *user; char *group; char *listen_address; int listen_backlog; /* Using chown */ char *listen_owner; char *listen_group; char *listen_mode; char *listen_allowed_clients; int process_priority; int pm; int pm_max_children; int pm_start_servers; int pm_min_spare_servers; int pm_max_spare_servers; int pm_process_idle_timeout; int pm_max_requests; char *pm_status_path; char *ping_path; char *ping_response; char *access_log; char *access_format; char *slowlog; int request_slowlog_timeout; int request_terminate_timeout; int rlimit_files; int rlimit_core; char *chroot; char *chdir; int catch_workers_output; int clear_env; char *security_limit_extensions; struct key_value_s *env; struct key_value_s *php_admin_values; struct key_value_s *php_values; #ifdef HAVE_APPARMOR char *apparmor_hat; #endif #ifdef HAVE_FPM_ACL /* Using Posix ACL */ char *listen_acl_users; char *listen_acl_groups; #endif }; struct ini_value_parser_s { char *name; char *(*parser)(zval *, void **, intptr_t); intptr_t offset; }; enum { PM_STYLE_STATIC = 1, PM_STYLE_DYNAMIC = 2, PM_STYLE_ONDEMAND = 3 }; int fpm_conf_init_main(int test_conf, int force_daemon); int fpm_worker_pool_config_free(struct fpm_worker_pool_config_s *wpc); int fpm_conf_write_pid(); int fpm_conf_unlink_pid(); #endif