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

31 lines
726 B
Nix
Raw Normal View History

let
webdav = 4200;
restic = 4300;
http = 4400;
in {
webdav_main = webdav + 0;
webdav_media = webdav + 1;
webdav_music_ro = webdav + 2;
webdav_public = webdav + 3;
webdav_uploads = webdav + 4;
2023-11-15 17:17:35 +00:00
webdav_gaming = webdav + 5;
2024-04-26 19:36:58 +01:00
webdav_notes = webdav + 6;
2022-11-02 16:04:43 +00:00
restic_music = restic + 0;
restic_vault = restic + 1;
restic_social = restic + 2;
restic_quassel = restic + 3;
restic_postgresql = restic + 4;
restic_mail = restic + 5;
restic_forgejo = restic + 6;
restic_caldav = restic + 7;
2023-10-27 17:44:32 +01:00
restic_owncast = restic + 8;
restic_jellyfin = restic + 9;
2024-02-08 20:21:35 +00:00
restic_grocy = restic + 10;
2024-03-10 17:17:05 +00:00
restic_lappy_t495 = restic + 11;
http_music = http + 0;
http_public = http + 1;
http_uploads_public = http + 2;
2022-11-02 16:04:43 +00:00
}