A Chassis extension that allows you to append new configuration values to your php-fpm.conf
so you can tailor your Chassis box to match your server requirements.
You have two options to install this extension.
- Clone the extension manually.
# In your Chassis dir:
git clone --recursive https://github.com/Chassis/phpfpmconf.git extensions/phpfpmconf
# Reprovision
cd ..
vagrant provision
- Alter your
config.yaml
file to include this extensions.
extensions:
- chassis/phpfpmconf
Then reprovision
# Reprovision
cd ..
vagrant provision
- Add a new file called
custom.conf
into yourcontent
directory. - Add your custom configuration to this file. e.g.
security.limit_extensions = php.html .php .html
- Reprovision
vagrant provision
.