nixpkgs/nixos/modules/services/web-servers/traefik.nix

126 lines
3.2 KiB
Nix
Raw Normal View History

2017-09-27 16:30:49 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.traefik;
configFile =
if cfg.configFile == null then
pkgs.runCommand "config.toml" {
buildInputs = [ pkgs.remarshal ];
preferLocalBuild = true;
} ''
remarshal -if json -of toml \
< ${pkgs.writeText "config.json" (builtins.toJSON cfg.configOptions)} \
> $out
''
else cfg.configFile;
2017-09-27 16:30:49 +00:00
in {
options.services.traefik = {
enable = mkEnableOption "Traefik web server";
configFile = mkOption {
default = null;
2017-10-04 13:51:20 +00:00
example = literalExample "/path/to/config.toml";
2017-09-27 16:30:49 +00:00
type = types.nullOr types.path;
description = ''
Path to verbatim traefik.toml to use.
(Using that option has precedence over <literal>configOptions</literal>)
'';
2017-09-27 16:30:49 +00:00
};
2017-09-27 16:30:49 +00:00
configOptions = mkOption {
description = ''
Config for Traefik.
'';
type = types.attrs;
default = {
defaultEntryPoints = ["http"];
entryPoints.http.address = ":80";
};
2017-09-27 16:30:49 +00:00
example = {
defaultEntrypoints = [ "http" ];
web.address = ":8080";
entryPoints.http.address = ":80";
2017-09-27 16:30:49 +00:00
file = {};
frontends = {
frontend1 = {
backend = "backend1";
routes.test_1.rule = "Host:localhost";
2017-09-27 16:30:49 +00:00
};
};
backends.backend1 = {
servers.server1.url = "http://localhost:8000";
2017-09-27 16:30:49 +00:00
};
};
};
dataDir = mkOption {
default = "/var/lib/traefik";
type = types.path;
description = ''
Location for any persistent data traefik creates, ie. acme
'';
};
group = mkOption {
default = "traefik";
type = types.str;
example = "docker";
description = ''
Set the group that traefik runs under.
For the docker backend this needs to be set to <literal>docker</literal> instead.
'';
};
2017-09-27 16:30:49 +00:00
package = mkOption {
default = pkgs.traefik;
defaultText = "pkgs.traefik";
type = types.package;
description = "Traefik package to use.";
};
};
config = mkIf cfg.enable {
systemd.tmpfiles.rules = [
"d '${cfg.dataDir}' 0700 traefik traefik - -"
];
2017-09-27 16:30:49 +00:00
systemd.services.traefik = {
description = "Traefik web server";
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = ''${cfg.package.bin}/bin/traefik --configfile=${configFile}'';
Type = "simple";
User = "traefik";
Group = cfg.group;
2017-09-27 16:30:49 +00:00
Restart = "on-failure";
StartLimitInterval = 86400;
StartLimitBurst = 5;
AmbientCapabilities = "cap_net_bind_service";
CapabilityBoundingSet = "cap_net_bind_service";
NoNewPrivileges = true;
LimitNPROC = 64;
LimitNOFILE = 1048576;
PrivateTmp = true;
PrivateDevices = true;
ProtectHome = true;
ProtectSystem = "full";
ReadWriteDirectories = cfg.dataDir;
};
};
users.users.traefik = {
2017-09-27 16:30:49 +00:00
group = "traefik";
home = cfg.dataDir;
createHome = true;
2019-10-12 20:25:28 +00:00
isSystemUser = true;
2017-09-27 16:30:49 +00:00
};
users.groups.traefik = {};
2017-09-27 16:30:49 +00:00
};
}