ma nginx/euer.wiki: use settings instead of extraConfig all the way down

This commit is contained in:
makefu 2019-10-15 21:42:57 +02:00
parent f786002cb3
commit 0116beb658
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
1 changed files with 6 additions and 7 deletions

View File

@ -26,20 +26,19 @@ in {
pools.euer-wiki = {
inherit user group;
listen = fpm-socket;
config = {
settings = {
"pm" = "dynamic";
"pm.max_children" = 5;
"pm.start_servers" = 2;
"pm.min_spare_servers" = 1;
"pm.max_spare_servers" = 3;
"chdir" = "/";
"php_admin_value[error_log]" = "stderr";
"php_admin_flag[log_errors]" = "on";
"catch_workers_output" = "yes";
};
phpEnv.twconf = base-cfg;
extraConfig = ''
chdir = /
php_admin_value[error_log] = 'stderr'
php_admin_flag[log_errors] = on
catch_workers_output = yes
'';
};
};