Defined Type: php::fpm::pool
- Defined in:
- manifests/fpm/pool.pp
Overview
Configure fpm pools
Parameters
See the official php-fpm documentation for parameters that are not documented here: php.net/manual/en/install.fpm.configuration.php.
- ensure
-
Remove pool if set to ‘’absent’‘, add otherwise
- listen
-
On what socket to listen for FastCGI connections, i.e. ‘’127.0.0.1:9000” or ‘’/var/run/php5-fpm.sock’‘
- listen_backlog
- listen_allowed_clients
- listen_owner
- listen_allowed_clients
-
Set owner of the Unix socket
- listen_group
-
Set the group of the Unix socket
- listen_mode
- user
-
Which user the php-fpm process to run as
- group
-
Which group the php-fpm process to run as
- pm
- pm_max_children
- pm_start_servers
- pm_min_spare_servers
- pm_max_spare_servers
- pm_max_requests
- pm_status_path
- ping_path
- ping_response
- access_log
- pm_max_children
-
The path to the file to write access log requests to
- access_log_format
-
The format to save the access log entries as
- request_terminate_timeout
- request_slowlog_timeout
- security_limit_extensions
- slowlog
- template
- request_slowlog_timeout
-
The template to use for the pool
- rlimit_files
- rlimit_core
- chroot
- chdir
- catch_workers_output
- include
- rlimit_core
-
Other configuration files to include on this pool
- env
-
List of environment variables that are passed to the php-fpm from the outside and will be available to php scripts in this pool
- env_value
-
Hash of environment variables and values as strings to use in php scripts in this pool
- options
-
An optional hash for any other data.
- php_value
-
Hash of php_value directives
- php_flag
-
Hash of php_flag directives
- php_admin_value
-
Hash of php_admin_value directives
- php_admin_flag
-
Hash of php_admin_flag directives
- php_directives
-
List of custom directives that are appended to the pool config
- root_group
-
UNIX group of the root user
- base_dir
-
The folder that contains the php-fpm pool configs. This defaults to a sensible default depending on your operating system, like ‘/etc/php5/fpm/pool.d’ or ‘/etc/php-fpm.d’
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'manifests/fpm/pool.pp', line 115
define php::fpm::pool (
$ensure = 'present',
$listen = '127.0.0.1:9000',
$listen_backlog = '-1',
$listen_allowed_clients = undef,
$listen_owner = undef,
$listen_group = undef,
$listen_mode = undef,
$user = $::php::fpm::config::user,
$group = $::php::fpm::config::group,
$pm = 'dynamic',
$pm_max_children = '50',
$pm_start_servers = '5',
$pm_min_spare_servers = '5',
$pm_max_spare_servers = '35',
$pm_max_requests = '0',
$pm_status_path = undef,
$ping_path = undef,
$ping_response = 'pong',
$access_log = undef,
$access_log_format = "%R - %u %t \"%m %r\" %s",
$request_terminate_timeout = '0',
$request_slowlog_timeout = '0',
$security_limit_extensions = undef,
$slowlog = "/var/log/php-fpm/${name}-slow.log",
$template = 'php/fpm/pool.conf.erb',
$rlimit_files = undef,
$rlimit_core = undef,
$chroot = undef,
$chdir = undef,
$catch_workers_output = 'no',
$include = undef,
$env = [],
$env_value = {},
$options = {},
$php_value = {},
$php_flag = {},
$php_admin_value = {},
$php_admin_flag = {},
$php_directives = [],
$root_group = $::php::params::root_group,
$base_dir = undef,
) {
include ::php::params
if $base_dir != undef {
validate_absolute_path($base_dir)
}
$pool = $title
# Hack-ish to default to user for group too
$group_final = $group ? {
undef => $user,
default => $group
}
# On FreeBSD fpm is not a separate package, but included in the 'php' package.
# Implies that the option SET+=FPM was set when building the port.
$real_package = $::osfamily ? {
'FreeBSD' => [],
default => $::php::fpm::package,
}
$pool_base_dir = pick_default($base_dir, $::php::fpm::config::pool_base_dir, $::php::params::fpm_pool_dir)
if ($ensure == 'absent') {
file { "${pool_base_dir}/${pool}.conf":
ensure => absent,
notify => Class['::php::fpm::service'],
}
} else {
file { "${pool_base_dir}/${pool}.conf":
ensure => file,
notify => Class['::php::fpm::service'],
require => Package[$real_package],
content => template($template),
owner => root,
group => $root_group,
mode => '0644',
}
}
}
|