https://github.com/chassis/phpfpmconf
A Chassis extension to modify php-fpm.conf
https://github.com/chassis/phpfpmconf
chassis chassis-extension php wordpress
Last synced: about 1 month ago
JSON representation
A Chassis extension to modify php-fpm.conf
- Host: GitHub
- URL: https://github.com/chassis/phpfpmconf
- Owner: Chassis
- Created: 2017-10-08T08:26:49.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2020-08-13T09:37:56.000Z (almost 6 years ago)
- Last Synced: 2025-05-29T16:34:16.166Z (about 1 year ago)
- Topics: chassis, chassis-extension, php, wordpress
- Language: Puppet
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom PHP FPM Conf
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.
## Installation
You have two options to install this extension.
1. Clone the extension manually.
```
# In your Chassis dir:
git clone --recursive https://github.com/Chassis/phpfpmconf.git extensions/phpfpmconf
# Reprovision
cd ..
vagrant provision
```
2. Alter your `config.yaml` file to include this extensions.
```
extensions:
- chassis/phpfpmconf
```
Then reprovision
```
# Reprovision
cd ..
vagrant provision
```
## Configuration
1. Add a new file called `custom.conf` into your `content` directory.
2. Add your custom configuration to this file. e.g. `security.limit_extensions = php.html .php .html`
3. Reprovision `vagrant provision`.