Merge pull request 'docs: Fixup out of date networking docs' (#5089) from Qubasa/clan-core:fix_docs into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/5089
This commit is contained in:
Luis Hebendanz
2025-09-03 16:39:22 +00:00

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";
}; };
}; };