hippocampus: server-cleanup

This commit is contained in:
2024-11-29 17:03:14 -05:00
parent 58031f3896
commit 5c70acaecd
6 changed files with 17 additions and 21 deletions

View File

@@ -13,15 +13,15 @@
# ./private/grafana.nix # ./private/grafana.nix
# Home Monitoring and Control # Home Monitoring and Control
./private/homeassistant.nix # ./private/homeassistant.nix
# Minio S3 Object Storage # Minio S3 Object Storage
./private/miniio.nix ./private/miniio.nix
# OctoPrint # OctoPrint
./private/octoprint.nix # ./private/octoprint.nix
# Samba Share # Samba Share
./private/samba.nix # ./private/samba.nix
]; ];
} }

View File

@@ -6,9 +6,6 @@
# Entrace to Control Pane of Private Network # Entrace to Control Pane of Private Network
./public/headscale.nix ./public/headscale.nix
# Location tracking of my Dad in Saskatchewan
./public/hauk.nix
# Self Hosted Git Server # Self Hosted Git Server
./public/gitea.nix ./public/gitea.nix

View File

@@ -1,14 +0,0 @@
{pkgs, config, ...}:
{
imports = [
../../oci/hauk.nix
];
services.caddy.virtualHosts = {
"crompton.cc" = {
extraConfig = ''
reverse_proxy 127.0.0.1:7888
'';
};
};
}

View File

@@ -23,7 +23,7 @@
]; ];
# Give a name to each device # Give a name to each device
dns_config = { dns = {
base_domain = "tailnet"; base_domain = "tailnet";
magic_dns = true; magic_dns = true;
}; };

View File

@@ -52,11 +52,17 @@
}; };
services.caddy.virtualHosts = { services.caddy.virtualHosts = {
"games.syzygial.cc:443" = { "games.syzygial.cc:443" = {
serverAliases = [
"games.crompton.cc:443"
];
extraConfig = '' extraConfig = ''
reverse_proxy 10.1.0.1:80 reverse_proxy 10.1.0.1:80
''; '';
}; };
"games.syzygial.cc:9000" = { "games.syzygial.cc:9000" = {
serverAliases = [
"games.crompton.cc:9000"
];
extraConfig = '' extraConfig = ''
reverse_proxy 10.1.0.1:9000 reverse_proxy 10.1.0.1:9000
''; '';

View File

@@ -10,5 +10,12 @@
} }
''; '';
}; };
"crompton.cc" = {
extraConfig = ''
file_server {
root /srv/www/crompton
}
'';
};
}; };
} }