nix-home/modules/cloud/traefik/config.nix

90 lines
2.5 KiB
Nix
Raw Normal View History

2021-11-01 18:41:55 +00:00
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.cloud.traefik;
2021-11-01 19:26:11 +00:00
# Copied from traefik.nix
jsonValue = with types;
let
valueType = nullOr (oneOf [
bool
int
float
str
(lazyAttrsOf valueType)
(listOf valueType)
]) // {
description = "JSON value";
emptyValue.value = { };
};
in valueType;
2021-11-01 18:41:55 +00:00
hostType = with types; submodule {
options = {
host = mkOption {
type = str;
description = "The host for the router filter";
};
path = mkOption {
type = nullOr str;
default = null;
description = "The path for the router filter (exact path is matched)";
};
filter = mkOption {
type = nullOr str;
default = null;
description = "The filter syntax for the router. Overrides `host` and `path` if provided";
};
port = mkOption {
type = types.port;
description = "The port that the service is listening on";
};
entrypoints = mkOption {
type = listOf (enum ["http" "https" "smtp-submission" "imap"]);
default = [ "https" ];
description = "The entrypoints that will serve the host";
};
2021-11-01 19:26:11 +00:00
middlewares = mkOption {
2021-11-01 19:44:19 +00:00
type = listOf jsonValue;
2021-11-01 19:26:11 +00:00
default = [];
description = "The middlewares to be used with the host.";
};
2021-11-01 18:41:55 +00:00
};
};
# Returns the filter given a host configuration
filterOfHost = host :
if host.filter != null then host.filter
else if host.path == null then "Host(`${host.host}`)"
else "Host(`${host.host}`) && Path(`${host.path}`)";
# Turns a host configuration into dynamic traefik configuration
hostToConfig = name : host : {
http.routers."${name}-router" = {
rule = filterOfHost host;
entryPoints = host.entrypoints;
tls.certResolver = "le";
service = "${name}-service";
2021-11-01 19:26:11 +00:00
middlewares = lists.imap0 (id: m: "${name}-middleware-${toString id}") host.middlewares;
2021-11-01 18:41:55 +00:00
};
http.services."${name}-service".loadBalancer.servers = [
{ url = "http://localhost:${toString host.port}"; }
];
2021-11-01 19:26:11 +00:00
http.middlewares = builtins.listToAttrs (lists.imap0 (id: v: {
name = "${name}-middleware-${toString id}";
value = v;
}) host.middlewares);
2021-11-01 18:41:55 +00:00
};
in
{
options.cloud.traefik.hosts = mkOption {
type = types.attrsOf hostType;
default = {};
description = "The HTTP hosts to run on the server";
};
config.cloud.traefik.config = builtins.foldl' attrsets.recursiveUpdate {} (attrsets.mapAttrsToList hostToConfig cfg.hosts);
}