machine-config/bert/services/http/whereis.chandlerswift.com.nix

10 lines
212 B
Nix
Raw Normal View History

2025-01-14 23:12:25 -06:00
{config, ...}: {
services.caddy.virtualHosts."whereis.chandlerswift.com".extraConfig = ''
reverse_proxy localhost:8083
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
}