flake/hosts/aws/tyo0/services/wastebin.nix

19 lines
441 B
Nix
Raw Normal View History

2024-10-19 13:00:06 +08:00
{ lib, ports, ... }:
2024-09-06 20:19:44 +08:00
let
2024-10-19 13:00:06 +08:00
port = ports.wastebin;
2024-09-06 20:19:44 +08:00
in
2024-08-27 17:08:53 +08:00
{
services.wastebin = {
enable = true;
2024-09-06 20:19:44 +08:00
settings.WASTEBIN_ADDRESS_PORT = "127.0.0.1:${toString port}";
2024-08-27 17:08:53 +08:00
};
2024-08-31 10:15:09 +08:00
services.caddy.settings.apps.http.servers.srv0.routes = lib.singleton {
2024-09-21 01:38:01 +08:00
match = lib.singleton { host = [ "pb.ny4.dev" ]; };
2024-08-31 10:15:09 +08:00
handle = lib.singleton {
handler = "reverse_proxy";
2024-09-06 20:19:44 +08:00
upstreams = [ { dial = "localhost:${toString port}"; } ];
2024-08-31 10:15:09 +08:00
};
};
2024-08-27 17:08:53 +08:00
}