diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-21 11:09:05 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-21 11:09:36 -0700 |
commit | fad1b2d9dc3766822f4bd3adb18c12fe0318ec36 (patch) | |
tree | 9fbd42f2859ee41a9185bd72d5bdeef8777bcaea /nix/hosts/wildcat | |
parent | tweak cgitrc (diff) | |
download | world-fad1b2d9dc3766822f4bd3adb18c12fe0318ec36.tar.gz |
configure fcgiwrap properly
This is related to https://discourse.nixos.org/t/51419
Diffstat (limited to 'nix/hosts/wildcat')
-rw-r--r-- | nix/hosts/wildcat/configuration.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/hosts/wildcat/configuration.nix b/nix/hosts/wildcat/configuration.nix index 82190b4..ddea7d2 100644 --- a/nix/hosts/wildcat/configuration.nix +++ b/nix/hosts/wildcat/configuration.nix @@ -87,10 +87,10 @@ in ''; }; - services.fcgiwrap = { + services.fcgiwrap.instances.cgit = { enable = true; - user = "git"; - group = "git"; + process.user = "git"; + process.group = "git"; }; services.nginx = { |