10 lines
208 B
Nix
10 lines
208 B
Nix
{config, ...}: {
|
|
services.caddy.virtualHosts."preview.chandlerswift.com".extraConfig = ''
|
|
reverse_proxy oscar:4000
|
|
|
|
handle_errors {
|
|
respond "{err.status_code} {err.status_text}"
|
|
}
|
|
'';
|
|
}
|