nixpkgs/nixos/modules/services/web-servers/nginx/default.nix

92 lines
1.9 KiB
Nix
Raw Normal View History

2013-03-02 22:40:56 +00:00
{ config, pkgs, ... }:
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
with pkgs.lib;
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
let
cfg = config.services.nginx;
nginx = cfg.package;
2013-03-02 22:40:56 +00:00
configFile = pkgs.writeText "nginx.conf" ''
user ${cfg.user} ${cfg.group};
daemon off;
2013-03-02 22:40:56 +00:00
${cfg.config}
'';
in
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
{
options = {
services.nginx = {
enable = mkOption {
default = false;
description = "
Enable the nginx Web Server.
";
};
2013-04-14 09:14:27 +00:00
package = mkOption {
default = pkgs.nginx;
description = "
Nginx package to use.
";
};
2013-03-02 22:40:56 +00:00
config = mkOption {
default = "events {}";
2013-03-02 22:40:56 +00:00
description = "
Verbatim nginx.conf configuration.
";
};
stateDir = mkOption {
default = "/var/spool/nginx";
description = "
Directory holding all state for nginx to run.
";
};
user = mkOption {
default = "nginx";
description = "User account under which nginx runs.";
};
group = mkOption {
default = "nginx";
description = "Group account under which nginx runs.";
};
2013-03-02 22:40:56 +00:00
};
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
};
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
config = mkIf cfg.enable {
environment.systemPackages = [ nginx ];
2013-03-02 22:40:56 +00:00
# TODO: test user supplied config file pases syntax test
2013-04-14 09:14:27 +00:00
2013-03-02 22:40:56 +00:00
systemd.services.nginx = {
description = "Nginx Web Server";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = [ nginx ];
2013-03-02 22:40:56 +00:00
preStart =
''
mkdir -p ${cfg.stateDir}/logs
chown -R ${cfg.user}:${cfg.group} ${cfg.stateDir}
2013-03-02 22:40:56 +00:00
'';
serviceConfig = {
ExecStart = "${nginx}/bin/nginx -c ${configFile} -p ${cfg.stateDir}";
2013-03-02 22:40:56 +00:00
};
};
2013-04-14 09:14:27 +00:00
users.extraUsers = optionalAttrs (cfg.user == "nginx") (singleton
{ name = "nginx";
group = "nginx";
uid = config.ids.uids.nginx;
});
2013-04-14 09:14:27 +00:00
users.extraGroups = optionalAttrs (cfg.group == "nginx") (singleton
{ name = "nginx";
gid = config.ids.gids.nginx;
});
};
2013-03-02 22:40:56 +00:00
}