flake/hosts/tyo0/services/wastebin.nix

18 lines
388 B
Nix
Raw Normal View History

2024-08-31 02:15:09 +00:00
{ lib, ... }:
2024-08-27 09:08:53 +00:00
{
services.wastebin = {
enable = true;
settings.WASTEBIN_ADDRESS_PORT = "127.0.0.1:8200";
};
2024-08-31 02:15:09 +00:00
services.caddy.settings.apps.http.servers.srv0.routes = lib.singleton {
match = lib.singleton {
host = [ "pb.ny4.dev" ];
};
handle = lib.singleton {
handler = "reverse_proxy";
upstreams = [ { dial = "localhost:8200"; } ];
};
};
2024-08-27 09:08:53 +00:00
}