added support for php ini values and custom vhost config
This commit is contained in:
parent
a7a49f80d3
commit
9289015473
4 changed files with 26 additions and 4 deletions
10
README.md
10
README.md
|
|
@ -29,6 +29,7 @@ vhosts: {}
|
|||
force_ssl: True
|
||||
|
||||
# install php-fpm, setup a php-handler upstream and copy a php location snippet to include in configs
|
||||
# either "False", "True" or a dict *phpconfig*, see below for definition
|
||||
php: False
|
||||
|
||||
```
|
||||
|
|
@ -65,6 +66,9 @@ backend: None
|
|||
# sets ssl certs to letsencrypt paths and enable letsencrypt for this vhost
|
||||
letsencrypt: False
|
||||
|
||||
# Array of custom config strings to add to the vhost config, the ";" is added after every entry
|
||||
custom: []
|
||||
|
||||
# array of locations, see below
|
||||
locations: [*locationconfig*, .. ]
|
||||
```
|
||||
|
|
@ -78,3 +82,9 @@ match: ''
|
|||
alias: None
|
||||
```
|
||||
|
||||
**phpconfog**:
|
||||
```
|
||||
ini:
|
||||
post_max_size: 64M
|
||||
upload_max_filesize: 64M
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue