1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

Merge pull request #5276 from abbradar/nginx-types

nixos/nginx: add more types
This commit is contained in:
Austin Seipp 2014-12-09 19:48:04 -06:00
commit 42e4e64577

View file

@ -23,6 +23,7 @@ in
services.nginx = { services.nginx = {
enable = mkOption { enable = mkOption {
default = false; default = false;
type = types.bool;
description = " description = "
Enable the nginx Web Server. Enable the nginx Web Server.
"; ";
@ -70,11 +71,13 @@ in
}; };
user = mkOption { user = mkOption {
type = types.str;
default = "nginx"; default = "nginx";
description = "User account under which nginx runs."; description = "User account under which nginx runs.";
}; };
group = mkOption { group = mkOption {
type = types.str;
default = "nginx"; default = "nginx";
description = "Group account under which nginx runs."; description = "Group account under which nginx runs.";
}; };