ansible-role-php/defaults/main.yml

25 lines
758 B
YAML
Raw Normal View History

---
php_fpm_log_dir: /var/log/phpfpm
2022-12-26 09:03:38 +01:00
php_fpm_pool_dir: "/etc/php/{{ php_version.stdout }}/fpm/pool.d"
2023-02-25 21:25:34 +01:00
php_fpm_pool_config_file: "{{ php_fpm_pool_dir }}/%i.cfg"
2023-03-17 21:55:48 +01:00
apache_php_module_name: "libapache2-mod-php{{ php_version.stdout }}"
2023-10-16 12:50:11 +02:00
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
2023-11-15 12:32:00 +01:00
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"