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

10 lines
212 B
Nix

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