Compare commits
No commits in common. "fc5acf594f642ef66d92a165274002c0b37bb5f8" and "ef82734585759868abe0cc5ec3f7a81e6bcc4914" have entirely different histories.
fc5acf594f
...
ef82734585
4 changed files with 7 additions and 87 deletions
|
@ -25,6 +25,11 @@ _: {
|
||||||
entrypoints = ["web"];
|
entrypoints = ["web"];
|
||||||
service = "prowlarr";
|
service = "prowlarr";
|
||||||
};
|
};
|
||||||
|
bazarr = {
|
||||||
|
rule = "Host(`bazarr.home.arpa`)";
|
||||||
|
entrypoints = ["web"];
|
||||||
|
service = "bazarr";
|
||||||
|
};
|
||||||
qbittorrent = {
|
qbittorrent = {
|
||||||
rule = "Host(`torrent.home.arpa`)";
|
rule = "Host(`torrent.home.arpa`)";
|
||||||
entrypoints = ["web"];
|
entrypoints = ["web"];
|
||||||
|
@ -35,6 +40,7 @@ _: {
|
||||||
sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}];
|
sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}];
|
||||||
radarr.loadBalancer.servers = [{url = "http://localhost:7878";}];
|
radarr.loadBalancer.servers = [{url = "http://localhost:7878";}];
|
||||||
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
|
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
|
||||||
|
bazarr.loadBalancer.servers = [{url = "http://localhost:6767";}];
|
||||||
qbittorrent.loadBalancer.servers = [{url = "http://localhost:8080";}];
|
qbittorrent.loadBalancer.servers = [{url = "http://localhost:8080";}];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./traefik.nix
|
|
||||||
./uptimekuma.nix
|
./uptimekuma.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,86 +0,0 @@
|
||||||
{config, ...}: {
|
|
||||||
sops.secrets.cloudflare-api-key = {};
|
|
||||||
networking.firewall.allowedTCPPorts = [80 443];
|
|
||||||
systemd.services.traefik = {
|
|
||||||
environment = {
|
|
||||||
CLOUDFLARE_EMAIL = "jch0tm2e@notohh.dev";
|
|
||||||
};
|
|
||||||
serviceConfig = {
|
|
||||||
EnvironmentFile = [config.sops.secrets.cloudflare-api-key.path];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
services.traefik = {
|
|
||||||
enable = true;
|
|
||||||
dynamicConfigOptions = {
|
|
||||||
http = {
|
|
||||||
middlewares.authelia = {
|
|
||||||
forwardauth = {
|
|
||||||
address = "http://100.121.201.47:9091/api/verify?rd=https://passport.notohh.dev/";
|
|
||||||
trustForwardHeader = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
routers = {
|
|
||||||
api = {
|
|
||||||
rule = "PathPrefix(`/api/`)";
|
|
||||||
entrypoints = ["websecure"];
|
|
||||||
service = "api@internal";
|
|
||||||
};
|
|
||||||
uptime-kuma = {
|
|
||||||
rule = "Host(`status.notohh.dev`)";
|
|
||||||
entrypoints = ["websecure"];
|
|
||||||
service = "uptime-kuma";
|
|
||||||
tls.domains = [{main = "*.notohh.dev";}];
|
|
||||||
tls.certresolver = "production";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
services = {
|
|
||||||
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
staticConfigOptions = {
|
|
||||||
log.level = "DEBUG";
|
|
||||||
api.dashboard = false;
|
|
||||||
api.insecure = false;
|
|
||||||
global = {
|
|
||||||
checkNewVersion = false;
|
|
||||||
sendAnonymousUsage = false;
|
|
||||||
};
|
|
||||||
entryPoints = {
|
|
||||||
websecure = {
|
|
||||||
address = ":443";
|
|
||||||
};
|
|
||||||
web = {
|
|
||||||
address = ":80";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
metrics = {
|
|
||||||
prometheus = {
|
|
||||||
addServicesLabels = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
certificatesResolvers = {
|
|
||||||
staging.acme = {
|
|
||||||
email = "x3xr6n66@notohh.dev";
|
|
||||||
storage = "/var/lib/traefik/acme.json";
|
|
||||||
caServer = "https://acme-staging-v02.api.letsencrypt.org/directory";
|
|
||||||
dnsChallenge = {
|
|
||||||
provider = "cloudflare";
|
|
||||||
resolvers = ["1.1.1.1:53" "1.0.0.1:53"];
|
|
||||||
delayBeforeCheck = "0";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
production.acme = {
|
|
||||||
email = "x3xr6n66@notohh.dev";
|
|
||||||
storage = "/var/lib/traefik/acme.json";
|
|
||||||
caServer = "https://acme-v02.api.letsencrypt.org/directory";
|
|
||||||
dnsChallenge = {
|
|
||||||
provider = "cloudflare";
|
|
||||||
resolvers = ["1.1.1.1:53" "1.0.0.1:53"];
|
|
||||||
delayBeforeCheck = "0";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,4 +1,5 @@
|
||||||
_: {
|
_: {
|
||||||
|
networking.firewall.allowedTCPPorts = [4000];
|
||||||
services.uptime-kuma = {
|
services.uptime-kuma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue