Compare commits
2 commits
3e3bcd9584
...
4b2c7464f0
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b2c7464f0 | |||
| 74754554e8 |
4 changed files with 35 additions and 11 deletions
|
|
@ -35,6 +35,8 @@ in {
|
||||||
dash = [
|
dash = [
|
||||||
[ "PocketID" "authentik" "https://auth.${domain}" "http://localhost:1411/" ]
|
[ "PocketID" "authentik" "https://auth.${domain}" "http://localhost:1411/" ]
|
||||||
[ "Forgejo" "forgejo" "https://git.${domain}" "http://localhost:5080/" ]
|
[ "Forgejo" "forgejo" "https://git.${domain}" "http://localhost:5080/" ]
|
||||||
|
[ "Copyparty" "files" "https://cdn.${domain}" "http://localhost:3923/" ]
|
||||||
|
[ "CryptPad" "cryptpad" "https://docs.${domain}" "http://localhost:7090/" ]
|
||||||
[ "CodeServer" "coder" "https://code.proxy.${domain}" "http://localhost:8443/" ]
|
[ "CodeServer" "coder" "https://code.proxy.${domain}" "http://localhost:8443/" ]
|
||||||
[ "AdGuardHome" "adguard" "https://dns.proxy.${domain}" "http://localhost:8088/" ]
|
[ "AdGuardHome" "adguard" "https://dns.proxy.${domain}" "http://localhost:8088/" ]
|
||||||
[ "Traefik" "traefikproxy" "https://dynamic.proxy.${domain}/dashboard/" "" ]
|
[ "Traefik" "traefikproxy" "https://dynamic.proxy.${domain}/dashboard/" "" ]
|
||||||
|
|
@ -46,6 +48,15 @@ in {
|
||||||
[ "SearXNG" "searxng" "https://search.proxy.${domain}" "http://localhost:8091/" ]
|
[ "SearXNG" "searxng" "https://search.proxy.${domain}" "http://localhost:8091/" ]
|
||||||
[ "Dockge" "docker" "https://containers.proxy.${domain}" "http://localhost:5001/" ]
|
[ "Dockge" "docker" "https://containers.proxy.${domain}" "http://localhost:5001/" ]
|
||||||
];
|
];
|
||||||
|
routes = {
|
||||||
|
"git.${domain}" = "http://localhost:5080";
|
||||||
|
"cdn.${domain}" = "http://localhost:3923";
|
||||||
|
"docs.${domain}" = "http://localhost:7090";
|
||||||
|
"auth.${domain}" = "http://localhost:1411";
|
||||||
|
"dash.${domain}" = "http://localhost:5070";
|
||||||
|
"media.${domain}" = "http://localhost:8096";
|
||||||
|
"gallery.${domain}" = "http://localhost:2284";
|
||||||
|
};
|
||||||
proxy = {
|
proxy = {
|
||||||
base = "proxy.${domain}";
|
base = "proxy.${domain}";
|
||||||
hosts = {
|
hosts = {
|
||||||
|
|
@ -65,6 +76,7 @@ in {
|
||||||
"pass" = d "http://localhost:8060";
|
"pass" = d "http://localhost:8060";
|
||||||
"auth" = d "http://localhost:1411";
|
"auth" = d "http://localhost:1411";
|
||||||
"git" = d "http://localhost:5080";
|
"git" = d "http://localhost:5080";
|
||||||
|
"cdn" = d "http://localhost:3923";
|
||||||
"ai" = d "http://localhost:8080";
|
"ai" = d "http://localhost:8080";
|
||||||
"@" = d "http://localhost:5070";
|
"@" = d "http://localhost:5070";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
5
modules/system/homelab/cdn.nix
Normal file
5
modules/system/homelab/cdn.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [ copyparty-most ];
|
||||||
|
|
||||||
|
# TODO: systemd service
|
||||||
|
}
|
||||||
15
modules/system/homelab/docs.nix
Normal file
15
modules/system/homelab/docs.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ homelab, ... }: let
|
||||||
|
domain = "docs.${homelab.domain}";
|
||||||
|
in {
|
||||||
|
services.cryptpad = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
httpPort = 7090;
|
||||||
|
websocketPort = 7080;
|
||||||
|
httpUnsafeOrigin = "https://${domain}";
|
||||||
|
httpSafeOrigin = "https://${domain}";
|
||||||
|
blockDailyCheck = true;
|
||||||
|
disableIntegratedEviction = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,19 +1,11 @@
|
||||||
{ pkgs, lib, homelab, ... }: let
|
{ pkgs, lib, homelab, ... }: {
|
||||||
routes = {
|
|
||||||
"git.${homelab.domain}" = "http://localhost:5080";
|
|
||||||
"auth.${homelab.domain}" = "http://localhost:1411";
|
|
||||||
"dash.${homelab.domain}" = "http://localhost:5070";
|
|
||||||
"media.${homelab.domain}" = "http://localhost:8096";
|
|
||||||
"gallery.${homelab.domain}" = "http://localhost:2284";
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
services.cloudflared = {
|
services.cloudflared = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tunnels.homelab = {
|
tunnels.homelab = {
|
||||||
credentialsFile = "/mnt/data/cloudflared/homelab.json";
|
credentialsFile = "/mnt/data/cloudflared/homelab.json";
|
||||||
certificateFile = "/mnt/data/cloudflared/cert.pem";
|
certificateFile = "/mnt/data/cloudflared/cert.pem";
|
||||||
default = "http_status:404";
|
default = "http_status:404";
|
||||||
ingress = routes;
|
ingress = homelab.routes;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -32,6 +24,6 @@ in {
|
||||||
script = lib.concatMapStringsSep "\n" (domain: ''
|
script = lib.concatMapStringsSep "\n" (domain: ''
|
||||||
echo "Ensuring DNS route for ${domain}..."
|
echo "Ensuring DNS route for ${domain}..."
|
||||||
${pkgs.cloudflared}/bin/cloudflared tunnel --origincert /mnt/data/cloudflared/cert.pem route dns ${homelab.cf-tunnel-id} ${domain} || true
|
${pkgs.cloudflared}/bin/cloudflared tunnel --origincert /mnt/data/cloudflared/cert.pem route dns ${homelab.cf-tunnel-id} ${domain} || true
|
||||||
'') (builtins.attrNames routes);
|
'') (builtins.attrNames homelab.routes);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue