added nginx autoproxy for exposes config, needs some refactoring
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Vivian 2023-05-04 16:19:01 +02:00
parent fa5bda60be
commit af893b9e43
3 changed files with 106 additions and 95 deletions

View file

@ -20,15 +20,15 @@ let
}; };
}; };
in { in {
options = { options.meta = {
meta.exposes = mkOption { exposes = mkOption {
type = with types; attrsOf (submodule exposesOpts); type = with types; attrsOf (submodule exposesOpts);
description = '' description = ''
Exposed services Exposed services
''; '';
}; };
meta.ipv4 = mkOption { ipv4 = mkOption {
type = types.str; type = types.str;
description = '' description = ''
Own IPv4 Address Own IPv4 Address

View file

@ -2,7 +2,7 @@
with lib; with lib;
let let
cfg = config.services.v.vault; cfg = config.services.v.vault;
hostIP = config.deployment.targetHost; hostIP = config.meta.ipv4;
# Find all vault hosts that do not have the same IP as the current host # Find all vault hosts that do not have the same IP as the current host
vault_hosts = vault_hosts =

View file

@ -1,5 +1,7 @@
{ pkgs, hosts, ... }: { pkgs, config, hosts, lib, ... }:
let let
inherit (builtins) filter hasAttr attrValues concatMap;
proxy = url: { proxy = url: {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
@ -22,6 +24,16 @@ let
add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Origin *;
return 200 '${builtins.toJSON data}'; return 200 '${builtins.toJSON data}';
''; '';
hostsWithExposes =
filter (hasAttr "exposes") (attrValues hosts.${config.networking.domain});
exposes = { ip, exposes, ... }:
map ({ domain, port }: { inherit ip domain port; }) (attrValues exposes);
mkVhost = { ip, domain, port }: {
"${domain}" = proxy "http://${ip}:${toString port}";
};
vhosts = lib.foldr (el: acc: acc // mkVhost el) { }
(concatMap exposes hostsWithExposes);
in { in {
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
@ -45,19 +57,17 @@ in {
package = pkgs.nginxMainline; package = pkgs.nginxMainline;
# Templated # Templated
virtualHosts.${hosts.olympus.hedgedoc.exposes.md.domain} = proxy "http://hedgedoc.olympus:${toString hosts.olympus.hedgedoc.exposes.md.port}/"; virtualHosts = vhosts // {
# 0x76.dev # 0x76.dev
virtualHosts."ha.0x76.dev" = proxy "http://home-assistant.olympus:8123/"; "ha.0x76.dev" = proxy "http://home-assistant.olympus:8123/";
virtualHosts."git.0x76.dev" = proxy "http://gitea.olympus:3000"; "git.0x76.dev" = proxy "http://gitea.olympus:3000";
virtualHosts."o.0x76.dev" = proxy "http://minio.olympus:9000"; "o.0x76.dev" = proxy "http://minio.olympus:9000";
virtualHosts."grafana.0x76.dev" = "grafana.0x76.dev" = proxy "http://victoriametrics.olympus:2342";
proxy "http://victoriametrics.olympus:2342"; "outline.0x76.dev" = proxy "http://outline.olympus:3000";
virtualHosts."outline.0x76.dev" = proxy "http://outline.olympus:3000"; "ntfy.0x76.dev" = proxy "http://ntfy.olympus:80";
virtualHosts."ntfy.0x76.dev" = proxy "http://ntfy.olympus:80"; "ci.0x76.dev" = proxy "http://woodpecker.olympus:8000";
virtualHosts."ci.0x76.dev" = proxy "http://woodpecker.olympus:8000"; "dex.0x76.dev" = proxy "http://dex.olympus:5556";
virtualHosts."dex.0x76.dev" = proxy "http://dex.olympus:5556"; "pass.0x76.dev" = {
virtualHosts."pass.0x76.dev" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/" = { locations."/" = {
@ -75,10 +85,10 @@ in {
}; };
# Redshifts # Redshifts
virtualHosts."andreea.redshifts.xyz" = proxy "http://zmeura.olympus:8008"; "andreea.redshifts.xyz" = proxy "http://zmeura.olympus:8008";
# Meow # Meow
virtualHosts."meowy.tech" = { "meowy.tech" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/".extraConfig = '' locations."/".extraConfig = ''
@ -90,7 +100,7 @@ in {
locations."= /.well-known/matrix/server".extraConfig = locations."= /.well-known/matrix/server".extraConfig =
mkWellKnown serverConfig; mkWellKnown serverConfig;
}; };
virtualHosts."chat.meowy.tech" = { "chat.meowy.tech" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/".extraConfig = '' locations."/".extraConfig = ''
@ -111,7 +121,7 @@ in {
proxyPass = "http://synapse.olympus:8008"; proxyPass = "http://synapse.olympus:8008";
}; };
}; };
virtualHosts."element.chat.meowy.tech" = { "element.chat.meowy.tech" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
@ -123,7 +133,7 @@ in {
}; };
}; };
}; };
virtualHosts."cinny.chat.meowy.tech" = { "cinny.chat.meowy.tech" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
@ -135,17 +145,18 @@ in {
}; };
}; };
}; };
virtualHosts."admin.chat.meowy.tech" = { "admin.chat.meowy.tech" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
root = pkgs.synapse-admin; root = pkgs.synapse-admin;
}; };
virtualHosts."books.meowy.tech" = proxy "http://bookwyrm.olympus:8001"; "books.meowy.tech" = proxy "http://bookwyrm.olympus:8001";
# Kubernetes endpoints # Kubernetes endpoints
virtualHosts."0x76.dev" = k8s_proxy; "0x76.dev" = k8s_proxy;
virtualHosts."internal.xirion.net" = k8s_proxy; "internal.xirion.net" = k8s_proxy;
virtualHosts."blog.xirion.net" = k8s_proxy; "blog.xirion.net" = k8s_proxy;
};
}; };
security.acme.defaults.email = "victorheld12@gmail.com"; security.acme.defaults.email = "victorheld12@gmail.com";