docs: Fixup out of date networking docs

This commit is contained in:
Qubasa
2025-09-03 18:35:55 +02:00
parent ea098048c8
commit 8d3e0d2209

View File

@@ -19,10 +19,10 @@ For machines with public IPs or DNS names, use the `internet` service to configu
# Direct SSH with fallback support # Direct SSH with fallback support
internet = { internet = {
roles.default.machines.server1 = { roles.default.machines.server1 = {
settings.address = "server1.example.com"; settings.host = "server1.example.com";
}; };
roles.default.machines.server2 = { roles.default.machines.server2 = {
settings.address = "192.168.1.100"; settings.host = "192.168.1.100";
}; };
}; };
@@ -50,7 +50,7 @@ For machines with public IPs or DNS names, use the `internet` service to configu
# Priority 1: Try direct connection first # Priority 1: Try direct connection first
internet = { internet = {
roles.default.machines.publicserver = { roles.default.machines.publicserver = {
settings.address = "public.example.com"; settings.host = "public.example.com";
}; };
}; };