feat(dns01): bootstrap DNS #10

Merged
cst1 merged 1 commit from dns_config into main 2024-12-07 14:44:38 +01:00
5 changed files with 14 additions and 5 deletions

View file

@ -25,10 +25,12 @@ with dns.lib.combinators;
photoprism = host "129.199.146.101" null;
immich = host "129.199.146.101" null;
homebox = host "129.199.146.102" null;
# Nameservers
ns01 = host "45.13.104.26" "2a0e:e701:1120:1000:ffff::45.13.104.26";
# *.infra.beta.dgnum.eu
# *.infra.lab.dgnum.eu
infra = {
subdomains = mapAttrs' (
host:

View file

@ -5,7 +5,7 @@
HBOX_OPTIONS_ALLOW_REGISTRATION = "false";
};
};
services.nginx.virtualHosts."homebox.cgiga.fr" = {
services.nginx.virtualHosts."homebox.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];

View file

@ -7,7 +7,7 @@
host = "localhost";
};
services.nginx.virtualHosts."immich.cgiga.fr" = {
services.nginx.virtualHosts."immich.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];

View file

@ -8,7 +8,7 @@
settings = {
PHOTOPRISM_DEFAULT_LOCALE = "fr";
PHOTOPRISM_ADMIN_USERNAME = "admin";
PHOHOPRISM_SITE_URL = "https://photoprism.cgiga.fr";
PHOHOPRISM_SITE_URL = "https://photoprism.lab.dgnum.eu";
PHOTOPRISM_SITE_CAPTION = "PhotoPrism";
# DB access config
@ -41,7 +41,7 @@
];
};
nginx.virtualHosts."photoprism.cgiga.fr" = {
nginx.virtualHosts."photoprism.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];

View file

@ -9,6 +9,13 @@
}
];
ipv4 = [
{
address = "45.13.104.26";
prefixLength = 32;
}
];
gateways = [ "2a0e:e701:1120:1000::1" ];
dns = [ "2a0e:e701:1120:1000::f:1" ];
};