3
0
Fork 0
forked from mirrors/nixpkgs

nixos/nginx: add more types

This commit is contained in:
Nikolay Amiantov 2014-12-10 04:40:00 +03:00
parent 743b47579b
commit d0773dae54

View file

@ -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.";
};