nixfiles/hosts/hetzner-arm/containers/storage/data/ports.nix

17 lines
214 B
Nix
Raw Normal View History

{
webdav = let
base = 4200;
in {
public = base + 0;
uploads = base + 1;
};
http = let
base = 4300;
in {
2025-01-27 17:28:28 +00:00
music = base + 0;
public = base + 1;
uploads_public = base + 2;
};
2022-11-02 16:04:43 +00:00
}