2023-06-12 00:46:43 -04:00
|
|
|
_: {
|
2023-06-13 12:11:08 -04:00
|
|
|
networking.firewall.allowedTCPPorts = [80 443];
|
2023-06-11 18:24:13 -04:00
|
|
|
services.traefik = {
|
|
|
|
enable = true;
|
|
|
|
dynamicConfigOptions = {
|
|
|
|
http = {
|
|
|
|
routers = {
|
|
|
|
api = {
|
|
|
|
rule = "PathPrefix(`/api/`)";
|
|
|
|
entryPoints = ["websecure"];
|
|
|
|
service = "api@internal";
|
|
|
|
};
|
2023-11-11 16:27:11 -05:00
|
|
|
homepage = {
|
2023-10-03 15:48:48 -04:00
|
|
|
rule = "Host(`dashboard.internal.flake.sh`)";
|
2023-06-14 03:58:30 -04:00
|
|
|
entrypoints = ["web"];
|
2023-11-11 16:27:11 -05:00
|
|
|
service = "homepage";
|
2023-06-14 03:58:30 -04:00
|
|
|
};
|
2023-06-13 12:11:08 -04:00
|
|
|
stash = {
|
2023-10-03 15:48:48 -04:00
|
|
|
rule = "Host(`stash.internal.flake.sh`)";
|
2023-06-13 12:11:08 -04:00
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "stash";
|
|
|
|
};
|
2023-09-17 14:06:53 -04:00
|
|
|
jellyfin = {
|
2023-10-03 15:48:48 -04:00
|
|
|
rule = "Host(`jellyfin.internal.flake.sh`)";
|
2023-09-17 14:06:53 -04:00
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "jellyfin";
|
|
|
|
};
|
|
|
|
jellyseerr = {
|
2023-10-03 15:48:48 -04:00
|
|
|
rule = "Host(`jellyseerr.internal.flake.sh`)";
|
2023-09-17 14:06:53 -04:00
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "jellyseerr";
|
|
|
|
};
|
2023-11-11 16:27:11 -05:00
|
|
|
wallos = {
|
|
|
|
rule = "Host(`wallos.internal.flake.sh`)";
|
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "wallos";
|
|
|
|
};
|
2024-01-09 00:25:11 -05:00
|
|
|
searxng = {
|
|
|
|
rule = "Host(`search.internal.flake.sh`)";
|
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "searxng";
|
|
|
|
};
|
2024-01-23 22:06:44 -05:00
|
|
|
hass = {
|
|
|
|
rule = "Host(`hass.internal.flake.sh`)";
|
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "hass";
|
|
|
|
};
|
2024-01-30 19:28:30 -05:00
|
|
|
paperless = {
|
|
|
|
rule = "Host(`paperless.internal.flake.sh`)";
|
|
|
|
entrypoints = ["web"];
|
|
|
|
service = "paperless";
|
|
|
|
};
|
2023-06-11 18:24:13 -04:00
|
|
|
};
|
|
|
|
services = {
|
2023-06-13 12:11:08 -04:00
|
|
|
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
|
2023-11-11 16:27:11 -05:00
|
|
|
homepage.loadBalancer.servers = [{url = "http://localhost:7676";}];
|
2023-09-17 14:06:53 -04:00
|
|
|
jellyfin.loadBalancer.servers = [{url = "http://localhost:8096";}];
|
|
|
|
jellyseerr.loadBalancer.servers = [{url = "http://localhost:5055";}];
|
2023-11-11 16:27:11 -05:00
|
|
|
wallos.loadBalancer.servers = [{url = "http://localhost:8282";}];
|
2024-01-09 00:25:11 -05:00
|
|
|
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
|
2024-01-23 22:06:44 -05:00
|
|
|
hass.loadBalancer.servers = [{url = "http://localhost:8123";}];
|
2024-01-30 19:28:30 -05:00
|
|
|
paperless.loadBalancer.servers = [{url = "http://100.108.113.89:28981";}];
|
2023-06-11 18:24:13 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
staticConfigOptions = {
|
|
|
|
log.level = "DEBUG";
|
|
|
|
api.dashboard = false;
|
|
|
|
api.insecure = false;
|
|
|
|
global = {
|
|
|
|
checkNewVersion = false;
|
|
|
|
sendAnonymousUsage = false;
|
|
|
|
};
|
|
|
|
entryPoints = {
|
2023-06-14 02:59:32 -04:00
|
|
|
websecure = {
|
|
|
|
address = ":443";
|
|
|
|
forwardedHeaders.insecure = true;
|
|
|
|
};
|
|
|
|
web = {
|
|
|
|
address = ":80";
|
|
|
|
forwardedHeaders.insecure = true;
|
|
|
|
};
|
2023-06-11 18:24:13 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|