mirror of
https://github.com/HanXHX/ansible-php.git
synced 2026-02-24 09:23:29 +07:00
⚗️ Modernize and add CI
This commit is contained in:
36
molecule/_shared/group_vars/all/main.yml
Normal file
36
molecule/_shared/group_vars/all/main.yml
Normal file
@@ -0,0 +1,36 @@
|
||||
---
|
||||
|
||||
vhost: 'test.local'
|
||||
|
||||
php_version: null
|
||||
|
||||
php_extra_packages:
|
||||
- '{{ php_package_prefix }}pgsql'
|
||||
|
||||
php_install_xdebug: true
|
||||
php_autoremove_default_pool: true
|
||||
|
||||
php_ini_fpm:
|
||||
display_errors: 'Off'
|
||||
|
||||
php_ini_cli:
|
||||
error_reporting: 'E_ALL'
|
||||
|
||||
php_fpm_poold:
|
||||
- pool_name: 'test_ansible'
|
||||
listen: '/run/php/php-ansible1.sock'
|
||||
pm: 'dynamic'
|
||||
pm_max_children: 250
|
||||
pm_start_servers: 10
|
||||
pm_min_spare_servers: 10
|
||||
pm_max_spare_servers: 20
|
||||
status_path: '/status'
|
||||
ping_path: '/ping'
|
||||
ping_response: 'ok'
|
||||
|
||||
- name: 'test_ansible2'
|
||||
user: 'foo'
|
||||
php_value:
|
||||
display_errors: 'Off'
|
||||
php_admin_value:
|
||||
memory_limit: '98M'
|
||||
Reference in New Issue
Block a user