You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
; {{ ansible_managed }}
|
|
|
|
[itop_{{ itop_id }}]
|
|
|
|
listen.owner = root
|
|
listen.group = {{ httpd_user | default('apache') }}
|
|
listen.mode = 0660
|
|
listen = /run/php-fpm/itop_{{ itop_id }}.sock
|
|
user = {{ itop_php_user }}
|
|
group = {{ itop_php_user }}
|
|
catch_workers_output = yes
|
|
|
|
pm = dynamic
|
|
pm.max_children = 15
|
|
pm.start_servers = 3
|
|
pm.min_spare_servers = 3
|
|
pm.max_spare_servers = 6
|
|
pm.max_requests = 5000
|
|
request_terminate_timeout = 60m
|
|
|
|
php_flag[display_errors] = off
|
|
php_admin_flag[log_errors] = on
|
|
php_admin_value[error_log] = syslog
|
|
php_admin_value[memory_limit] = 512M
|
|
php_admin_value[session.save_path] = {{ itop_root_dir }}/sessions
|
|
php_admin_value[upload_tmp_dir] = {{ itop_root_dir }}/tmp
|
|
php_admin_value[sys_temp_dir] = {{ itop_root_dir }}/tmp
|
|
php_admin_value[post_max_size] = 21M
|
|
php_admin_value[upload_max_filesize] = 20M
|
|
php_admin_value[disable_functions] = system, show_source, symlink, dl, shell_exec, passthru, phpinfo, escapeshellcmd
|
|
php_admin_value[open_basedir] = {{ itop_root_dir }}:/etc/pki/tls/cert.pem:/usr/bin/dot
|
|
; DB schema upgrade can be very long
|
|
php_admin_value[max_execution_time] = 1800
|
|
php_admin_value[max_input_time] = 120
|
|
php_admin_flag[allow_url_include] = off
|
|
php_admin_flag[allow_url_fopen] = on
|
|
php_admin_flag[file_uploads] = on
|
|
php_admin_flag[session.cookie_httponly] = on
|
|
|
|
|