@@ -431,7 +431,7 @@
class="p-6 border rounded-2xl transition-all text-left group hover:bg-fuchsia-600/20 hover:border-fuchsia-500">
-
+
NetBird Managed
Recommended for small teams
@@ -541,6 +541,17 @@
+
+
+
+
+
A security token from Cloudflare that allows Numbus to verify you own the domain and secure it via SSL.
+
+
@@ -943,11 +954,11 @@
{ label: 'Remote Access', step: 7 },
{ label: 'Services', step: 8 },
{ label: 'Security', step: 9 },
- { label: 'Users', step: 10 }
+ { label: 'Users & Groups', step: 10 }
];
// Only servers have alerting/mail config usually
if (isServer) {
- configMinors.push({ label: 'Alerting', step: 11 });
+ configMinors.push({ label: 'Alerts', step: 11 });
}
} else {
configMinors = [
@@ -1170,7 +1181,7 @@
6: () => this.validators.ip(this.formData.network.ip_address) && this.validators.ip(this.formData.network.router_ip),
7: () => this.formData.remote_access.provider !== 'netbird-cloud' || (this.formData.remote_access.netbird_token && this.validators.netbirdToken(this.formData.remote_access.netbird_token)),
8: () => this.validators.domain(this.formData.ssl.domain),
- 9: () => this.formData.security.ssh_keys.trim().length > 10 && this.formData.ssl.cloudflare_token.length > 5,
+ 9: () => this.formData.security.ssh_keys.trim().length > 10 && this.formData.ssl.cloudflare_token.length > 10,
10: () => !!(this.formData.users[0].username && this.formData.users[0].name && this.validators.email(this.formData.users[0].email)),
11: () => this.validators.domain(this.formData.mail.smtp_host) && this.validators.port(this.formData.mail.smtp_port),
12: () => this.formData.gitConfig.url.length > 5,