diff options
Diffstat (limited to 'users/sterni/machines/ingeborg/http/fcgiwrap.nix')
-rw-r--r-- | users/sterni/machines/ingeborg/http/fcgiwrap.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/users/sterni/machines/ingeborg/http/fcgiwrap.nix b/users/sterni/machines/ingeborg/http/fcgiwrap.nix new file mode 100644 index 000000000000..19696d85d413 --- /dev/null +++ b/users/sterni/machines/ingeborg/http/fcgiwrap.nix @@ -0,0 +1,15 @@ +{ ... }: + +{ + imports = [ + ./nginx.nix + ]; + + config.services.fcgiwrap = { + enable = true; + socketType = "unix"; + socketAddress = "/run/fcgiwrap.sock"; + user = "http"; + group = "http"; + }; +} |