diff --git a/domain-proxies-module.nix b/domain-proxies-module.nix deleted file mode 100644 index 0c44728..0000000 --- a/domain-proxies-module.nix +++ /dev/null @@ -1,234 +0,0 @@ -{ lib, config, ... }: -with lib; -let - vm-module = { - options = { - ip = mkOption { type = types.str; }; - ssh = mkOption { - type = types.nullOr types.ints.unsigned; - default = null; - }; - aliases = mkOption { - type = types.listOf types.str; - default = [ ]; - }; - port-forward = mkOption { - type = types.listOf types.ints.unsigned; - default = [ ]; - }; - }; - }; - hypervisor-module = - { config, name, ... }: - { - options = { - ip = mkOption { type = types.str; }; - host = mkOption { type = types.str; }; - vms = mkOption { type = types.attrsOf (types.submodule vm-module); }; - port-forward = mkOption { - type = types.listOf types.ints.unsigned; - default = [ ]; - }; - - domain-list = mkOption { - type = types.listOf types.str; - internal = true; - readOnly = true; - }; - ports = mkOption { - type = types.listOf types.ints.unsigned; - internal = true; - readOnly = true; - }; - redirects = mkOption { - type = types.unspecified; - internal = true; - readOnly = true; - }; - }; - config = rec { - domain-list = flatten ( - mapAttrsToList (main: vm: [ - main - vm.aliases - ]) config.vms - ); - ports = - config.port-forward - ++ flatten (mapAttrsToList (_: vm: vm.port-forward ++ optional (!isNull vm.ssh) vm.ssh) config.vms); - redirects = { - stream = flatten ( - mapAttrsToList ( - _: vm: - optional (!isNull vm.ssh) { - input = vm.ssh; - out = 22; - ip = vm.ip; - } - ++ map (port: { - input = port; - out = port; - ip = vm.ip; - }) vm.port-forward - ) config.vms - ); - http = mapAttrs (_: vm: { inherit (vm) ip aliases; }) config.vms; - domain-list = domain-list; - }; - }; - }; - entry-module = - { config, name, ... }: - { - options = { - host = mkOption { type = types.str; }; - hypervisors = mkOption { type = types.attrsOf (types.submodule hypervisor-module); }; - - redirects = mkOption { - type = types.unspecified; - internal = true; - readOnly = true; - }; - hosts-redirects = mkOption { - type = types.unspecified; - internal = true; - readOnly = true; - }; - }; - config = rec { - redirects = { - stream = flatten ( - mapAttrsToList ( - _: hyp: - map (port: { - input = port; - out = port; - ip = hyp.ip; - }) hyp.ports - ) config.hypervisors - ); - http = mapAttrs (_: hyp: { - ip = hyp.ip; - aliases = hyp.domain-list; - }) config.hypervisors; - domain-list = flatten ( - mapAttrsToList (fqdn: hyp: [ fqdn ] ++ hyp.redirects.domain-list) config.hypervisors - ); - }; - hosts-redirects = - mergeAttrs - (listToAttrs ( - mapAttrsToList (main: hyp: { - name = hyp.host; - value = { - fqdn = main; - inherit (hyp.redirects) stream http domain-list; - }; - }) config.hypervisors - )) - { - ${config.host} = { - fqdn = name; - inherit (redirects) stream http domain-list; - }; - }; - }; - }; - - cfg = config.kat-proxies; - - hosts-redirects = zipAttrsWith (_: vals: mergeAttrsList vals) ( - mapAttrsToList (_: entry: entry.hosts-redirects) cfg.entries - ); - hostname = config.networking.hostName; - redirects = hosts-redirects.${hostname}; -in -{ - options.kat-proxies = { - enable = mkEnableOption "nginx configuration of proxies"; - entries = mkOption { type = types.attrsOf (types.submodule entry-module); }; - internal-webroot = mkOption { type = types.package; }; - }; - - config = mkIf cfg.enable { - security.acme.certs.${redirects.fqdn}.extraDomainNames = redirects.domain-list; - networking.firewall.allowedTCPPorts = [ - 80 - 443 - ] ++ map ({ input, ... }: input) redirects.stream; - services.nginx = { - enable = true; - virtualHosts = - mapAttrs ( - _: - { aliases, ip }: - { - useACMEHost = redirects.fqdn; - forceSSL = true; - acmeFallbackHost = ip; - acmeFallbackRecommendedProxySettings = true; - serverAliases = aliases; - locations = { - "/.${hostname}" = { - extraConfig = '' - internal; - error_page 404 =418 /.${hostname}/error/418.html; - ''; - root = cfg.internal-webroot; - }; - "/" = { - recommendedProxySettings = true; - proxyPass = "https://${ip}/"; - extraConfig = '' - proxy_set_header Connection '''; - proxy_http_version 1.1; - chunked_transfer_encoding off; - proxy_buffering off; - proxy_cache off; - error_page 502 =599 "/.${hostname}/error/599.html"; - ''; - }; - }; - } - ) redirects.http - // { - ${redirects.fqdn} = { - default = true; - enableACME = true; - addSSL = true; - locations = { - "/.${hostname}" = { - extraConfig = '' - internal; - error_page 404 =418 /.${hostname}/error/418.html; - ''; - root = cfg.internal-webroot; - }; - "/" = { - extraConfig = '' - return 418; - error_page 418 =418 /.${hostname}/error/418.html; - ''; - }; - }; - }; - }; - streamConfig = concatStringsSep "\n" ( - map ( - { - input, - ip, - out, - }: - '' - server { - listen ${toString input}; - listen [::]:${toString input}; - proxy_pass ${ip}:${toString out}; - } - '' - ) redirects.stream - ); - }; - }; -} diff --git a/domain-proxies.nix b/domain-proxies.nix deleted file mode 100644 index a2db690..0000000 --- a/domain-proxies.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ - kat-proxies.entries = { - "watcher.katvayor.net" = { - host = "kat-watcher"; - hypervisors."manah.katvayor.net" = { - host = "kat-manah"; - ip = "10.42.0.1"; - port-forward = [ 9000 9500 ]; - vms = { - "degette.katvayor.net" = { - ssh = 22000; - ip = "192.168.122.2"; - aliases = [ ]; - }; - "betamail.katvayor.net" = { - ssh = 22002; - ip = "192.168.122.3"; - aliases = [ "catvayor.sh" ]; - port-forward = [ - 25 - 465 - 993 - ]; - }; - "son.katvayor.net" = { - ssh = null; - ip = "192.168.122.5"; - aliases = [ ]; - }; - "orchid.katvayor.net" = { - ssh = 22042; - ip = "192.168.122.6"; - aliases = [ - "simply-wise.fr" - "www.simply-wise.fr" - ]; - }; - }; - }; - }; - }; -} diff --git a/hive.nix b/hive.nix index cac37aa..a78c086 100644 --- a/hive.nix +++ b/hive.nix @@ -33,8 +33,6 @@ in ./kat "${sources.home-manager}/nixos" "${sources.disko}/module.nix" - ./domain-proxies-module.nix - ./domain-proxies.nix ]; networking.hostName = name; }; @@ -59,6 +57,7 @@ in { deployment.targetHost = "manah.kat"; services.openssh.enable = true; + kat.fqdn = "manah.katvayor.net"; imports = [ ./machines/kat-manah ]; @@ -69,6 +68,7 @@ in { deployment.targetHost = "watcher.kat"; services.openssh.enable = true; + kat.fqdn = "watcher.katvayor.net"; imports = [ ./machines/kat-watcher ]; @@ -84,6 +84,7 @@ in services.openssh.enable = true; services.qemuGuest.enable = true; boot.kernelParams = [ "console=ttyS0" ]; + kat.fqdn = "degette.katvayor.net"; imports = [ ./machines/kat-virt @@ -104,6 +105,7 @@ in services.openssh.enable = true; services.qemuGuest.enable = true; boot.kernelParams = [ "console=ttyS0" ]; + kat.fqdn = "betamail.katvayor.net"; imports = [ ./machines/kat-mail-test @@ -121,6 +123,7 @@ in services.openssh.enable = true; services.qemuGuest.enable = true; boot.kernelParams = [ "console=ttyS0" ]; + kat.fqdn = "son.katvayor.net"; imports = [ ./machines/kat-son ]; @@ -136,6 +139,7 @@ in services.openssh.enable = true; services.qemuGuest.enable = true; boot.kernelParams = [ "console=ttyS0" ]; + kat.fqdn = "orchid.katvayor.net"; imports = [ ./machines/kat-orchid ]; diff --git a/kat/default.nix b/kat/default.nix index 66ba518..9ba55bd 100644 --- a/kat/default.nix +++ b/kat/default.nix @@ -8,12 +8,16 @@ with lib; { imports = [ ./users + ./proxies ./root.nix ]; options.kat = { wireguardPubKey = mkOption { type = types.str; }; + fqdn = mkOption { + type = types.str; + }; path = mkOption { readOnly = true; type = types.path; diff --git a/machines/kat-watcher/error/418.html b/kat/proxies/418.html similarity index 91% rename from machines/kat-watcher/error/418.html rename to kat/proxies/418.html index f6701c5..6f8506f 100644 --- a/machines/kat-watcher/error/418.html +++ b/kat/proxies/418.html @@ -14,7 +14,7 @@