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

123 lines
2.9 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2013-04-14 11:14:27 +02:00
with lib;
2013-04-14 11:14:27 +02:00
2013-03-02 23:40:56 +01:00
let
cfg = config.services.nginx;
nginx = cfg.package;
2013-03-02 23:40:56 +01:00
configFile = pkgs.writeText "nginx.conf" ''
user ${cfg.user} ${cfg.group};
daemon off;
2013-03-02 23:40:56 +01:00
${cfg.config}
${optionalString (cfg.httpConfig != "") ''
http {
${cfg.httpConfig}
}
''}
${cfg.appendConfig}
2013-03-02 23:40:56 +01:00
'';
in
2013-04-14 11:14:27 +02:00
2013-03-02 23:40:56 +01:00
{
options = {
services.nginx = {
2013-03-02 23:40:56 +01:00
enable = mkOption {
default = false;
2014-12-10 02:40:00 +01:00
type = types.bool;
2013-03-02 23:40:56 +01:00
description = "
Enable the nginx Web Server.
";
};
2013-04-14 11:14:27 +02:00
package = mkOption {
default = pkgs.nginx;
type = types.package;
description = "
Nginx package to use.
";
};
2013-03-02 23:40:56 +01:00
config = mkOption {
default = "events {}";
2013-03-02 23:40:56 +01:00
description = "
Verbatim nginx.conf configuration.
";
};
appendConfig = mkOption {
type = types.lines;
default = "";
description = ''
Configuration lines appended to the generated Nginx
configuration file. Commonly used by different modules
providing http snippets. <option>appendConfig</option>
can be specified more than once and it's value will be
concatenated (contrary to <option>config</option> which
can be set only once).
'';
};
httpConfig = mkOption {
type = types.lines;
default = "";
description = "Configuration lines to be appended inside of the http {} block.";
};
2013-03-02 23:40:56 +01:00
stateDir = mkOption {
default = "/var/spool/nginx";
description = "
Directory holding all state for nginx to run.
";
};
user = mkOption {
2014-12-10 02:40:00 +01:00
type = types.str;
default = "nginx";
description = "User account under which nginx runs.";
};
group = mkOption {
2014-12-10 02:40:00 +01:00
type = types.str;
default = "nginx";
description = "Group account under which nginx runs.";
};
};
2013-03-02 23:40:56 +01:00
};
2013-04-14 11:14:27 +02:00
2013-03-02 23:40:56 +01:00
config = mkIf cfg.enable {
# TODO: test user supplied config file pases syntax test
2013-04-14 11:14:27 +02:00
systemd.services.nginx = {
description = "Nginx Web Server";
2013-03-02 23:40:56 +01:00
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = [ nginx ];
2013-03-02 23:40:56 +01:00
preStart =
''
mkdir -p ${cfg.stateDir}/logs
chmod 700 ${cfg.stateDir}
chown -R ${cfg.user}:${cfg.group} ${cfg.stateDir}
2013-03-02 23:40:56 +01:00
'';
serviceConfig = {
ExecStart = "${nginx}/bin/nginx -c ${configFile} -p ${cfg.stateDir}";
Restart = "on-failure";
RestartSec = "10s";
StartLimitInterval = "1min";
2013-03-02 23:40:56 +01:00
};
};
2013-04-14 11:14:27 +02:00
users.extraUsers = optionalAttrs (cfg.user == "nginx") (singleton
{ name = "nginx";
group = cfg.group;
uid = config.ids.uids.nginx;
});
2013-04-14 11:14:27 +02:00
users.extraGroups = optionalAttrs (cfg.group == "nginx") (singleton
{ name = "nginx";
gid = config.ids.gids.nginx;
});
};
}