2015-03-18 15:09:24 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-04-14 11:14:27 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2013-04-14 11:14:27 +02:00
|
|
|
|
2013-03-02 23:40:56 +01:00
|
|
|
let
|
2015-03-18 15:09:24 +01:00
|
|
|
cfg = config.services.nginx;
|
2013-10-20 22:52:02 +02:00
|
|
|
nginx = cfg.package;
|
2013-03-02 23:40:56 +01:00
|
|
|
configFile = pkgs.writeText "nginx.conf" ''
|
2013-05-05 21:44:06 +02:00
|
|
|
user ${cfg.user} ${cfg.group};
|
2013-04-14 11:17:16 +02:00
|
|
|
daemon off;
|
2015-09-07 14:17:33 +02:00
|
|
|
|
2013-03-02 23:40:56 +01:00
|
|
|
${cfg.config}
|
2015-09-07 14:17:33 +02:00
|
|
|
|
2014-03-18 04:31:56 +01:00
|
|
|
${optionalString (cfg.httpConfig != "") ''
|
|
|
|
http {
|
2015-09-07 14:17:33 +02:00
|
|
|
include ${cfg.package}/conf/mime.types;
|
2015-09-07 14:17:33 +02:00
|
|
|
${cfg.httpConfig}
|
2014-03-18 04:31:56 +01:00
|
|
|
}
|
|
|
|
''}
|
2014-02-12 18:35:39 +01:00
|
|
|
${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 = {
|
2015-03-18 15:09:24 +01:00
|
|
|
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
|
|
|
|
2013-10-20 22:52:02 +02:00
|
|
|
package = mkOption {
|
|
|
|
default = pkgs.nginx;
|
2016-01-17 19:34:55 +01:00
|
|
|
defaultText = "pkgs.nginx";
|
2014-02-27 13:22:04 +01:00
|
|
|
type = types.package;
|
2013-10-20 22:52:02 +02:00
|
|
|
description = "
|
|
|
|
Nginx package to use.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
2013-03-02 23:40:56 +01:00
|
|
|
config = mkOption {
|
2013-04-14 11:17:16 +02:00
|
|
|
default = "events {}";
|
2013-03-02 23:40:56 +01:00
|
|
|
description = "
|
|
|
|
Verbatim nginx.conf configuration.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
2014-02-12 18:35:39 +01:00
|
|
|
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).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-03-18 04:31:56 +01:00
|
|
|
httpConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
2015-09-07 14:17:33 +02:00
|
|
|
description = "Configuration lines to be appended inside of the http {} block.";
|
2014-03-18 04:31:56 +01:00
|
|
|
};
|
|
|
|
|
2013-03-02 23:40:56 +01:00
|
|
|
stateDir = mkOption {
|
|
|
|
default = "/var/spool/nginx";
|
|
|
|
description = "
|
|
|
|
Directory holding all state for nginx to run.
|
|
|
|
";
|
|
|
|
};
|
2013-05-05 21:44:06 +02:00
|
|
|
|
|
|
|
user = mkOption {
|
2014-12-10 02:40:00 +01:00
|
|
|
type = types.str;
|
2013-05-05 21:44:06 +02:00
|
|
|
default = "nginx";
|
|
|
|
description = "User account under which nginx runs.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
2014-12-10 02:40:00 +01:00
|
|
|
type = types.str;
|
2013-05-05 21:44:06 +02:00
|
|
|
default = "nginx";
|
|
|
|
description = "Group account under which nginx runs.";
|
|
|
|
};
|
|
|
|
|
2015-03-18 15:09:24 +01:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2015-03-18 15:09:24 +01:00
|
|
|
systemd.services.nginx = {
|
|
|
|
description = "Nginx Web Server";
|
2013-03-02 23:40:56 +01:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2013-05-05 21:44:06 +02:00
|
|
|
path = [ nginx ];
|
2013-03-02 23:40:56 +01:00
|
|
|
preStart =
|
|
|
|
''
|
|
|
|
mkdir -p ${cfg.stateDir}/logs
|
2014-06-03 16:00:27 +02:00
|
|
|
chmod 700 ${cfg.stateDir}
|
2013-05-05 21:44:06 +02:00
|
|
|
chown -R ${cfg.user}:${cfg.group} ${cfg.stateDir}
|
2013-03-02 23:40:56 +01:00
|
|
|
'';
|
|
|
|
serviceConfig = {
|
2013-05-05 21:44:06 +02:00
|
|
|
ExecStart = "${nginx}/bin/nginx -c ${configFile} -p ${cfg.stateDir}";
|
2015-04-25 15:17:06 +02:00
|
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
2015-01-19 10:46:45 +01:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
|
|
|
StartLimitInterval = "1min";
|
2013-03-02 23:40:56 +01:00
|
|
|
};
|
|
|
|
};
|
2013-04-14 11:14:27 +02:00
|
|
|
|
2013-05-06 17:11:04 +02:00
|
|
|
users.extraUsers = optionalAttrs (cfg.user == "nginx") (singleton
|
|
|
|
{ name = "nginx";
|
2014-06-03 16:00:27 +02:00
|
|
|
group = cfg.group;
|
2015-03-18 15:09:24 +01:00
|
|
|
uid = config.ids.uids.nginx;
|
2013-05-06 17:11:04 +02:00
|
|
|
});
|
2013-04-14 11:14:27 +02:00
|
|
|
|
2013-05-06 17:11:04 +02:00
|
|
|
users.extraGroups = optionalAttrs (cfg.group == "nginx") (singleton
|
|
|
|
{ name = "nginx";
|
2015-03-18 15:09:24 +01:00
|
|
|
gid = config.ids.gids.nginx;
|
2013-05-06 17:11:04 +02:00
|
|
|
});
|
|
|
|
};
|
2015-03-18 15:09:24 +01:00
|
|
|
}
|