PHP is a popular general-purpose scripting language that is popular in web development.
php_user
(string) - User to run php-fpm asphp_runtime_root
(string) - Directory for runtime dataphp_fpm_pidfile_path
(string) - Path for FPM pidfilephp_fpm_socket_path
(string) - Path for FPM socketphp_log_root
(string) - Directory for logsphp_fpm_log_path
(string) - Path for FPM logphp_error_log_path
(string) - Path for error logphp_slow_log_path
(string) - Path for slow logphp_slow_threshold
(string) - Threshold for script execution to be considered 'slow'php_hide_version
(string) - Do not expose version data.php_max_children
(integer) - Maximum worker processesphp_start_servers
(integer) - Start this many workers initiallyphp_min_spare_servers
(integer) - Keep at least this many workers availablephp_max_spare_servers
(integer) - Keep no more than this many workers idlephp_max_requests
(integer) - Maximum requests a worker can serve before being killed and replaced.php_short_open_tag
(boolean) - Enable short open tags. Conflicts with XML headers. Deprecated, removal targeted for PHP6+. <?= style short ECHO tags are always enabled in 5.4+php_display_errors
(boolean) - Display errors?php_post_max_size
(string) - Maximum POST sizephp_upload_max_filesize
(string) - Maximum upload filesize (must be <php_post_max_size
)php_cgi_fix_pathinfo
(string) - Enable cgi.fix_pathinfo. Enabled by default and required to conform to PHP spec. Fx your code to useSCRIPT_FILENAME
rather thanPATH_TRANSLATED
if you need to disable this.php_memory_limit
(string) - Memory limit for PHP workers (should be >php_post_max_size
)php_max_execution_time
(integer) - Upper bound on script execution timephp_request_terminate_timeout
(integer) - The timeout for serving a single request after which the worker process will be killed.php_max_input_vars
(integer) - How many input variables may be accepted.php_fpm
(boolean) - Enable FPM?php_composer
(boolean) - Install Composer?php_documentor
(boolean) - Install PHP Documentor?php_phpunit
(boolean) - Install PHPUnit?php_sodium
(boolean) - Install libsodium bindings?php_modules
(list) - Additional PHP modules to install
- hosts: servers
roles:
- role: telusdigital.php
php_modules:
- php5-curl
- php5-redis
php_phpunit: yes
- Chris Olstrom | e-mail | Twitter
- Aaron Pederson
- Ben Visser
- Nikki
- Justin Scott
- Steven Harradine