mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
refactor(services): standardize default service ports
This commit is contained in:
@@ -48,13 +48,11 @@
|
|||||||
|
|
||||||
uptime-kuma = {
|
uptime-kuma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 1111;
|
|
||||||
domain = "status.lab.tux.rs";
|
domain = "status.lab.tux.rs";
|
||||||
};
|
};
|
||||||
|
|
||||||
mediaflow-proxy = {
|
mediaflow-proxy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 8888;
|
|
||||||
environmentFile = innerArgs.config.sops.secrets."mediaflow-proxy".path;
|
environmentFile = innerArgs.config.sops.secrets."mediaflow-proxy".path;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -56,7 +56,6 @@
|
|||||||
|
|
||||||
vaultwarden = {
|
vaultwarden = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 9999;
|
|
||||||
domain = "bw.lab.tux.rs";
|
domain = "bw.lab.tux.rs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
type = types.port;
|
type = types.port;
|
||||||
default = 8888;
|
default = 1113;
|
||||||
description = "Port on which MediaFlow Proxy listens";
|
description = "Port on which MediaFlow Proxy listens";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
type = types.port;
|
type = types.port;
|
||||||
default = 8000;
|
default = 1112;
|
||||||
description = "Port on which Vaultwarden listens";
|
description = "Port on which Vaultwarden listens";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user