No description
defaults | ||
files | ||
handlers | ||
meta | ||
tasks | ||
templates | ||
test/integration | ||
.gitignore | ||
.kitchen.yml | ||
.rubocop.yml | ||
.travis.yml | ||
.yamllint | ||
CHANGELOG.md | ||
Gemfile | ||
Gemfile.lock | ||
LICENSE | ||
README.md |
Ansible role: PHP FPM
Install and configure PHP FPM
Requirements
- Ansible >= 2.5
- Debian Stretch
Role variables
phpfpm_version
- the php version to use (default:7.0
)phpfpm_dir_log
- directory with the phpfpm logs (default:/var/log/phpfpm
)phpfpm_packages
- array with the additionnal php packages to installphpfpm_pools
- array with the phpfpm pools
- name: myappli
user: www-myappli
php_config:
admin_value:
opcache.enable: 1
opcache.enable_cli: 1
- name: otherappli
user: www-otherappli
ping_path: /ping-test
Default variables for all pools
See php pool directives documentation
phpfpm_ping_path
- (default:/ping
)phpfpm_ping_response
- (default:pong
)phpfpm_pm
- (default:ondemand
)phpfpm_pm_max_children
- (default:16
)phpfpm_pm_start_servers
- (default:4
)phpfpm_pm_min_spare_servers
- (default:2
)phpfpm_pm_max_spare_servers
- (default:8
)phpfpm_pm_max_requests
- (default:500
)phpfpm_pm_process_idle_timeout
- (default:10
)phpfpm_pm_status_path
- (default:/status
)phpfpm_request_slowlog_timeout
- (default:10
)phpfpm_security_limit_extensions
- (default:.php
)
How to use
- hosts: server
roles:
- phpfpm
Development
Tests with docker
- install docker
- install ruby
- install bundler
gem install bundler
- install dependencies
bundle install
- run the tests
kitchen test
License
Copyright (c) 2018 Adrien Waksberg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.