forked from mirrors/nixpkgs
nixos/nginx: add more types
This commit is contained in:
parent
743b47579b
commit
d0773dae54
|
@ -23,6 +23,7 @@ in
|
|||
services.nginx = {
|
||||
enable = mkOption {
|
||||
default = false;
|
||||
type = types.bool;
|
||||
description = "
|
||||
Enable the nginx Web Server.
|
||||
";
|
||||
|
@ -70,11 +71,13 @@ in
|
|||
};
|
||||
|
||||
user = mkOption {
|
||||
type = types.str;
|
||||
default = "nginx";
|
||||
description = "User account under which nginx runs.";
|
||||
};
|
||||
|
||||
group = mkOption {
|
||||
type = types.str;
|
||||
default = "nginx";
|
||||
description = "Group account under which nginx runs.";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue