Add customization for proc values

This commit is contained in:
Lars
2023-09-13 14:05:07 +02:00
parent 9793780639
commit 041946b804
3 changed files with 7 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ data:
"match": {
"uri": [
"/wp-admin",
"/wp-admin/*",
"/wp-admin/*"
]
}
},
@@ -183,9 +183,9 @@ data:
"php": {
"type": "php",
"processes": {
"max": 10,
"spare": 1,
"idle_timeout": 20
"max": {{ .Values.php.maxProc | default 5 }},
"spare": {{ .Values.php.spareProc | default 1 }},
"idle_timeout": {{ .Values.php.procIdleTimeout | default 65 }}
},
"options": {
"user": {