|
-
-
- php:
-
- use_ppa: True
-
- ppa_name: 'ondrej/php5'
-
-
- mongo_version: "1.5.5"
- ng:
-
-
-
-
- lookup:
-
-
-
- pkgs:
- memcached: php5-memcached
-
- curl:
- - php-common
- - curl
-
-
-
- cli:
- -
- name: php-cli
- fromrepo: my-specialrepo
- -
- name: php-common
- skip_verify: True
-
-
- fpm:
- conf: /location/of/php-fpm/config.conf
- ini: /location/of/php-fpm/php.ini
- pools: /location/of/php-fpm/pool.d
- service: name-of-php5-fpm-service
-
-
- defaults:
- global:
- pid: /var/run/php5-fpm.pid
-
-
- cli:
- ini: /location/of/php-cli/php.ini
-
-
- fpm:
-
-
- service:
-
- enabled: True
-
-
- opts:
- reload: True
-
-
- config:
-
-
- ini:
-
- opts:
- recurse: True
-
-
-
- settings:
- PHP:
- engine: 'Off'
- extension_dir: '/usr/lib/php/modules/'
- extension: [pdo_mysql.so, iconv.so, openssl.so]
-
-
- conf:
-
- opts:
- recurse: True
-
-
-
- settings:
- global:
- pid: /var/run/php-fpm/special-pid.file
-
-
- pools:
-
-
- 'mypool.conf':
-
-
- enabled: True
-
- opts:
- replace: False
-
-
-
- settings:
- myapp:
- user: www-data
- group: www-data
- listen: /var/run/php5-fpm-myapp.sock
- listen.owner: www-data
- listen.group: www-data
- listen.mode: 0660
- pm: dynamic
- pm.max_children: 5
- pm.start_servers: 2
- pm.min_spare_servers: 1
- pm.max_spare_servers: 3
- 'php_admin_value[memory_limit]': 300M
-
-
- cli:
-
- ini:
-
- opts:
- replace: False
-
-
-
- settings:
- PHP:
- engine: 'Off'
-
-
- xcache:
- ini:
- opts: {}
-
-
- settings:
- xcache:
- xcache.size: 90M
-
-
- ini:
-
-
-
-
- defaults:
- PHP:
- engine: on
- output_buffering: 4096
- disable_functions:
- - pcntl_alarm
- - pcntl_fork
- - pcntl_wait
- 'CLI Server':
- cli_server_color: 'On'
|