bert: Add owntracks-recorder

This commit is contained in:
Chandler Swift 2025-01-14 23:12:25 -06:00
parent 9b6c2fdc3e
commit 4c6606be31
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
4 changed files with 30 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./preview.chandlerswift.com.nix
./stjohnscccc.org.nix
./swiftgang.net.nix
./whereis.chandlerswift.com.nix
];
services.caddy = {

View file

@ -0,0 +1,9 @@
{config, ...}: {
services.caddy.virtualHosts."whereis.chandlerswift.com".extraConfig = ''
reverse_proxy localhost:8083
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
}