technitium: init
This commit is contained in:
parent
3a9c4c11d4
commit
c2b3a3bb4d
3 changed files with 20 additions and 0 deletions
|
|
@ -90,6 +90,9 @@
|
||||||
restic {
|
restic {
|
||||||
tags tag:drone tag:restic
|
tags tag:drone tag:restic
|
||||||
}
|
}
|
||||||
|
technitium {
|
||||||
|
tags tag:drone tag:technitium
|
||||||
|
}
|
||||||
vaultwarden {
|
vaultwarden {
|
||||||
tags tag:drone tag:vaultwarden
|
tags tag:drone tag:vaultwarden
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./ntfy.nix
|
./ntfy.nix
|
||||||
./sops.nix
|
./sops.nix
|
||||||
|
./technitium-dns.nix
|
||||||
./uptime-kuma.nix
|
./uptime-kuma.nix
|
||||||
./vaultwarden.nix
|
./vaultwarden.nix
|
||||||
./zed.nix
|
./zed.nix
|
||||||
|
|
|
||||||
16
modules/nixos/services/homeserver/technitium-dns.nix
Normal file
16
modules/nixos/services/homeserver/technitium-dns.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.caddy.virtualHosts."technitium.taild5f7e6.ts.net".extraConfig =
|
||||||
|
assert config.services.caddy.enable;
|
||||||
|
''
|
||||||
|
import default-settings
|
||||||
|
|
||||||
|
bind tailscale/technitium
|
||||||
|
|
||||||
|
reverse_proxy localhost:5380
|
||||||
|
reverse_proxy /dns-query localhost:8053
|
||||||
|
'';
|
||||||
|
|
||||||
|
services.technitium-dns-server.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue