feat: Introduce server type management in ServerManager, enhancing server configuration with type selection and validation, and update example-servers.json to include server types for improved data consistency.
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 1m27s

This commit is contained in:
2025-12-06 02:16:37 +07:00
parent 7ccb3118aa
commit f8f8be44ca
3 changed files with 116 additions and 16 deletions
+10 -5
View File
@@ -4,34 +4,39 @@
"dns": "srv1.shx.su",
"country": "RU",
"provider": "Yandex",
"tunnel": "GRE"
"tunnel": "GRE",
"type": "jumphost"
},
{
"ip": "10.0.0.5",
"dns": "srv2.shx.su",
"country": "US",
"provider": "AWS",
"tunnel": "IPSec"
"tunnel": "IPSec",
"type": "exit"
},
{
"ip": "172.16.0.10",
"dns": "srv3.shx.su",
"country": "DE",
"provider": "Hetzner",
"tunnel": "GRE"
"tunnel": "GRE",
"type": "jumphost"
},
{
"ip": "8.8.8.8",
"dns": "dns.google",
"country": "US",
"provider": "Google",
"tunnel": "IPSec"
"tunnel": "IPSec",
"type": "exit"
},
{
"ip": "1.1.1.1",
"dns": "cloudflare-dns.com",
"country": "US",
"provider": "Cloudflare",
"tunnel": "GRE"
"tunnel": "GRE",
"type": "jumphost"
}
]