Puppet manifest to install and configure php7
- php7 + fpm for apache2
- php7 cli
- Only works on Ubuntu
- hiera
- augeas
- https://github.com/icalvete/puppet-common but really only need:
- common::add_env define.
Install apache2 with php7 + fpm (See http://php-fpm.org/)
Need https://github.com/icalvete/puppet-apache2
node 'ubuntu01.smartpurposes.net' inherits test_defaults {
class {'roles::apache2_server':
php => 7,
file_uploads => 'On',
file_uploads_size => '500M',
max_execution_time_fpm => '60'
}
}
- Some values must be parametriced
- Documentation
Israel Calvete Talavera icalvete@gmail.com