refactor(services): standardize default service ports

This commit is contained in:
tux
2026-08-09 18:21:56 +05:30
parent 9242347eaf
commit b060e4ccb6
4 changed files with 2 additions and 5 deletions

View File

@@ -48,13 +48,11 @@
uptime-kuma = {
enable = true;
port = 1111;
domain = "status.lab.tux.rs";
};
mediaflow-proxy = {
enable = true;
port = 8888;
environmentFile = innerArgs.config.sops.secrets."mediaflow-proxy".path;
};
};

View File

@@ -56,7 +56,6 @@
vaultwarden = {
enable = true;
port = 9999;
domain = "bw.lab.tux.rs";
};
};

View File

@@ -23,7 +23,7 @@
port = mkOption {
type = types.port;
default = 8888;
default = 1113;
description = "Port on which MediaFlow Proxy listens";
};

View File

@@ -23,7 +23,7 @@
port = mkOption {
type = types.port;
default = 8000;
default = 1112;
description = "Port on which Vaultwarden listens";
};