summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/limesurvey.nix
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-08-02 20:56:13 -0400
committerAaron Andersen <aaron@fosslib.net>2019-08-23 07:56:27 -0400
commita30a1e27953320f07f3db3589fd50c282689d683 (patch)
tree63a3e1bcbb20c9c2857d2cd3edf7b385c7a85cd1 /nixos/modules/services/web-apps/limesurvey.nix
parent62b774a7001f0d1d89d7ba6552c37b885c0189b7 (diff)
downloadnixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar.gz
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar.bz2
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar.lz
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar.xz
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.tar.zst
nixpkgs-a30a1e27953320f07f3db3589fd50c282689d683.zip
nixos/phpfpm: add user and group option to each pool
Diffstat (limited to 'nixos/modules/services/web-apps/limesurvey.nix')
-rw-r--r--nixos/modules/services/web-apps/limesurvey.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/limesurvey.nix b/nixos/modules/services/web-apps/limesurvey.nix
index 0449b9dfd41..a407ba875f2 100644
--- a/nixos/modules/services/web-apps/limesurvey.nix
+++ b/nixos/modules/services/web-apps/limesurvey.nix
@@ -203,11 +203,10 @@ in
     };
 
     services.phpfpm.pools.limesurvey = {
+      inherit user group;
       extraConfig = ''
         listen.owner = ${config.services.httpd.user};
         listen.group = ${config.services.httpd.group};
-        user = ${user};
-        group = ${group};
 
         env[LIMESURVEY_CONFIG] = ${limesurveyConfig}