|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
-
-
- php:
-
- use_external_repo: True
-
- external_repo_name: 'ondrej/php'
-
-
- 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:
-
- defaults:
- user: nginx
- group: nginx
- listen: /var/run/php-fpm-default.sock
-
-
-
- 'mypool.conf':
-
-
- enabled: True
-
-
-
- filname: my_other_name.conf
-
-
- 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'
-
-
-
- use_apache_formula: True
|