Add public visibility flags to service definitions
Mark services as public or private to control external access: - Public: vaultwarden, forgejo, nextcloud - Private: kanidm, jellyfin This enables proper routing and firewall configuration based on intended service visibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
6f1aca7b01
commit
878c4aa3ea
1 changed files with 5 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
name = "kanidm";
|
name = "kanidm";
|
||||||
domain = "auth.baduhai.dev";
|
domain = "auth.baduhai.dev";
|
||||||
host = "alexandria";
|
host = "alexandria";
|
||||||
|
public = false;
|
||||||
lanIP = "192.168.15.142";
|
lanIP = "192.168.15.142";
|
||||||
tailscaleIP = "100.76.19.50";
|
tailscaleIP = "100.76.19.50";
|
||||||
port = 8443;
|
port = 8443;
|
||||||
|
|
@ -16,6 +17,7 @@
|
||||||
name = "vaultwarden";
|
name = "vaultwarden";
|
||||||
domain = "pass.baduhai.dev";
|
domain = "pass.baduhai.dev";
|
||||||
host = "alexandria";
|
host = "alexandria";
|
||||||
|
public = true;
|
||||||
lanIP = "192.168.15.142";
|
lanIP = "192.168.15.142";
|
||||||
tailscaleIP = "100.76.19.50";
|
tailscaleIP = "100.76.19.50";
|
||||||
port = 8222;
|
port = 8222;
|
||||||
|
|
@ -24,6 +26,7 @@
|
||||||
name = "forgejo";
|
name = "forgejo";
|
||||||
domain = "git.baduhai.dev";
|
domain = "git.baduhai.dev";
|
||||||
host = "trantor";
|
host = "trantor";
|
||||||
|
public = true;
|
||||||
tailscaleIP = "100.108.5.90";
|
tailscaleIP = "100.108.5.90";
|
||||||
port = 3000;
|
port = 3000;
|
||||||
}
|
}
|
||||||
|
|
@ -31,6 +34,7 @@
|
||||||
name = "nextcloud";
|
name = "nextcloud";
|
||||||
domain = "cloud.baduhai.dev";
|
domain = "cloud.baduhai.dev";
|
||||||
host = "alexandria";
|
host = "alexandria";
|
||||||
|
public = true;
|
||||||
lanIP = "192.168.15.142";
|
lanIP = "192.168.15.142";
|
||||||
tailscaleIP = "100.76.19.50";
|
tailscaleIP = "100.76.19.50";
|
||||||
port = 443;
|
port = 443;
|
||||||
|
|
@ -39,6 +43,7 @@
|
||||||
name = "jellyfin";
|
name = "jellyfin";
|
||||||
domain = "jellyfin.baduhai.dev";
|
domain = "jellyfin.baduhai.dev";
|
||||||
host = "alexandria";
|
host = "alexandria";
|
||||||
|
public = false;
|
||||||
lanIP = "192.168.15.142";
|
lanIP = "192.168.15.142";
|
||||||
tailscaleIP = "100.76.19.50";
|
tailscaleIP = "100.76.19.50";
|
||||||
port = 8096;
|
port = 8096;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue