sakura: remove hugo, remove authelia from traefik

This commit is contained in:
notohh 2023-10-04 21:49:14 -04:00
parent fdb79c9d21
commit ff32aee52a
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 0 additions and 32 deletions

View file

@ -2,7 +2,6 @@
imports = [
./traefik.nix
./authelia.nix
./hugo.nix
./forgejo.nix
./rustypaste.nix
./woodpecker.nix

View file

@ -1,13 +0,0 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [hugo];
virtualisation.oci-containers.containers.hugo = {
image = "klakegg/hugo:0.111.3-ext-ubuntu";
cmd = ["server"];
volumes = [
"/home/notoh/docker/hugo:/src"
];
ports = [
"1313:1313"
];
};
}

View file

@ -30,21 +30,6 @@
entrypoints = ["web"];
service = "dashdot";
};
authelia = {
rule = "Host(`passport.notohh.dev`)";
entrypoints = ["websecure"];
service = "authelia";
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "production";
};
hugo = {
rule = "Host(`notohh.dev`)";
entrypoints = ["websecure"];
service = "hugo";
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "production";
middlewares = "authelia";
};
foundryvtt = {
rule = "Host(`foundry.flake.sh`)";
entrypoints = ["websecure"];
@ -96,9 +81,7 @@
};
};
services = {
authelia.loadBalancer.servers = [{url = "http://localhost:9091";}];
dashdot.loadBalancer.servers = [{url = "http://localhost:4000";}];
hugo.loadBalancer.servers = [{url = "http://localhost:1313";}];
foundryvtt.loadBalancer.servers = [{url = "http://localhost:30000";}];
forgejo.loadBalancer.servers = [{url = "http://localhost:3200";}];
rustypaste.loadBalancer.servers = [{url = "http://localhost:8000";}];
@ -123,7 +106,6 @@
};
web = {
address = ":80";
forwardedHeaders.insecure = true;
};
};
metrics = {