24 lines
758 B
YAML
24 lines
758 B
YAML
---
|
|
php_fpm_log_dir: /var/log/phpfpm
|
|
php_fpm_pool_dir: "/etc/php/{{ php_version.stdout }}/fpm/pool.d"
|
|
php_fpm_pool_config_file: "{{ php_fpm_pool_dir }}/%i.cfg"
|
|
|
|
apache_php_module_name: "libapache2-mod-php{{ php_version.stdout }}"
|
|
|
|
php_fpm_config:
|
|
upload_max_filesize: 15M
|
|
post_max_size: "{{ upload_max_filesize }}"
|
|
memory_limit: 256M
|
|
max_execution_time: 300
|
|
date.timezone: Europe/Berlin
|
|
default_charset: UTF-8
|
|
apc.rfc1867: 1
|
|
display_errors: "Off"
|
|
allow_url_fopen: "Off"
|
|
assert.active: "Off"
|
|
mail.add_x_header: "Off"
|
|
session.use_strict_mode: 1
|
|
|
|
phpfpm_exporter_github_api_url: https://api.github.com/repos/Lusitaniae/phpfpm_exporter/releases/latest
|
|
phpfpm_exporter_socket_directories: /run/php/
|
|
phpfpm_exporter_listen_address: ":9253"
|