This commit is contained in:
nd 2023-09-01 23:48:25 +02:00
commit f18e26456c
8 changed files with 61 additions and 3 deletions

View file

@ -26,6 +26,9 @@ vhosts: {}
# name: *mapsconfig*, see below for definition
maps: {}
# name: *cacheconfig*, see below for definition
caches: {}
# force all traffic on ssl, except letsencrypt challenges
force_ssl: True
@ -117,6 +120,9 @@ alias: None
# Array of custom config strings to add to the vhost config, the ";" is added after every entry
custom: []
# name of the cache to use, only set if not none
cache: None
```
**authconfig**
@ -148,7 +154,16 @@ data: {}
**phpconfig**:
```
# If set, fpm forks exactly the number of worker processes specified (pm=static, pm.max_children=COUNT)
fpm_process_count: 5
ini:
post_max_size: 64M
upload_max_filesize: 64M
```
**cacheconfig**:
```
keys_zone_size: "10m"
cache_size: "1g"
inactive_time: "10m"
```