Ansible Role - PHP
Go to file
2015-03-06 11:32:59 -06:00
defaults Fixes #25: Add php_apc_enable_cli variable. 2015-02-28 21:14:51 -06:00
handlers Fixes #17: Use proper configuration paths in Debian/Ubuntu. 2015-02-26 14:17:51 -06:00
meta Issue #18: Fix php_webserver_daemon and add EL7. 2014-11-11 10:50:44 -06:00
tasks Issue #17: Fix for proper configuration paths in Debian/Ubuntu for apache2. 2015-02-26 14:31:11 -06:00
templates Fixes #25: Add php_apc_enable_cli variable. 2015-02-28 21:14:51 -06:00
tests Fix Travis tests. 2014-11-10 14:55:20 -06:00
vars Fixes #26: Install APC by default on Debian/Ubuntu systems. 2015-03-06 11:32:59 -06:00
.travis.yml Update test. 2014-11-08 14:36:55 -06:00
README.md Fixes #26: Install APC by default on Debian/Ubuntu systems. 2015-03-06 11:32:59 -06:00

Ansible Role: PHP

Build Status

Installs PHP on RedHat/CentOS and Debian/Ubuntu servers.

Requirements

Must be running a separate web server, such as Nginx or Apache.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

php_packages: []

A list of the PHP packages to install (OS-specific by default). You'll likely want to install common packages like php, php-cli, php-devel and php-pdo, and you can add in whatever other packages you'd like (for example, php-gd for image manipulation, or php-ldap if you need to connect to an LDAP server for authentication).

php_enable_webserver: true

If your usage of PHP is tied to a web server (e.g. Apache or Nginx), leave this default value. If you are using PHP server-side or to run some small application, set this value to false so this role doesn't attempt to interact with a web server.

php_webserver_daemon: "httpd"

The default values for the HTTP server deamon are httpd (used by Apache) for RedHat/CentOS, or apache2 (also used by Apache) for Debian/Ubuntu. If you are running another webserver (for example, nginx), change this value to the name of the daemon under which the webserver runs.

php_enablerepo: ""

(RedHat/CentOS only) If you have enabled any additional repositories (might I suggest geerlingguy.repo-epel or geerlingguy.repo-remi), those repositories can be listed under this variable (e.g. remi,epel). This can be handy, as an example, if you want to install the latest version of PHP 5.4, which is in the Remi repository.

PHP-FPM

PHP-FPM is a simple and robust FastCGI Process Manager for PHP. It can dramatically ease scaling of PHP apps and is the normal way of running PHP-based sites and apps when using a webserver like Nginx (though it can be used with other webservers just as easily).

When using this role with PHP running as php-fpm instead of as a process inside a webserver (e.g. Apache's mod_php), you need to set the following variable to true:

php_enable_php_fpm: false

You will also need to override the default php_packages list and add php-fpm (RedHat/CentOS) or php5-fpm (Debian/Ubuntu) to the list.

This role does not manage fpm-specific www pool configuration (found in /etc/php-fpm.d/www.conf on RedHat/CentOS and /etc/php5/fpm/pool.d/www.conf on Debian/Ubuntu), but rather allows you to manage those files on your own. If you change that file, remember to notify the restart php-fpm handler so PHP picks up the new settings once in place. Settings like pm.max_children and other pm.* settings can have a dramatic impact on server performance, and should be tuned specifically for each application and server configuration.

php.ini settings

php_use_managed_ini: true

By default, all the extra defaults below are applied through the php.ini included with this role. You can self-manage your php.ini file (if you need more flexility in its configuration) by setting this to false (in which case all the below variables will be ignored).

php_memory_limit: "256M"
php_max_execution_time: "60"
php_realpath_cache_size: "32K"
php_upload_max_filesize: "64M"
php_date_timezone: "America/Chicago"
php_sendmail_path: "/usr/sbin/sendmail -t -i"
php_short_open_tag: false
php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT"
php_display_errors: "Off"

Various defaults for PHP. Only used if php_use_managed_ini is set to true.

php_enable_apc: true

Whether to enable APC. Other APC variables will be ineffective if this is set to false.

php_apc_enabled_in_ini: false

When installing APC, depending on the system and whether running PHP as a webserver module or standalone via php-fpm, you might need the line extension=apc.so in apc.ini. If you need that line added (e.g. you're running php-fpm), set this variable to true.

php_apc_cache_by_default: "1"
php_apc_shm_size: "96M"
php_apc_stat: "1"
php_apc_enable_cli: "0"

APC ini directives that are often customized on a system. Set php_apc_cache_by_default to 0 to disable APC by default (so you could enable it on a host-by-host basis). Set the php_apc_shm_size so it will hold all your application code in memory with a little overhead (fragmentation or APC running out of memory will slow down PHP dramatically).

Ensuring APC is installed

If you use APC, you will need to make sure APC is installed (it is installed by default, but if you customize the php_packages list, you need to include APC in the list):

  • On RHEL/CentOS systems: Make sure php-pecl-apc is in the list of php_packages.
  • On Debian/Ubuntu systems: Make sure php-apc is in the list of php_packages.

You can also install APC via pecl, but it's simpler to manage the installation with the system's package manager.

Dependencies

None.

Example Playbook

- hosts: webservers
  vars_files:
    - vars/main.yml
  roles:
    - { role: geerlingguy.php }

Inside vars/main.yml:

php_memory_limit: "128M"
php_max_execution_time: "90"
php_upload_max_filesize: "256M"
php_packages:
  - php
  - php-cli
  - php-common
  - php-devel
  - php-gd
  - php-mbstring
  - php-pdo
  - php-pecl-apc
  - php-xml
  ...

TODO

  • Make role more flexible, allowing APC to be excluded from php_packages list.
  • Use lineinfile rather than templates to make configuration changes.

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.