diff --git a/client/cmd/login.go b/client/cmd/login.go index 566f661a3..c61c0a93a 100644 --- a/client/cmd/login.go +++ b/client/cmd/login.go @@ -202,6 +202,6 @@ func openURL(cmd *cobra.Command, verificationURIComplete, userCode string) { "If your browser didn't open automatically, use this URL to log in:\n\n" + " " + verificationURIComplete + " " + codeMsg + " \n\n") if err != nil { - cmd.Printf("Alternatively, you may want to use a setup key, see:\n\n https://www.netbird.io/docs/overview/setup-keys\n") + cmd.Printf("Alternatively, you may want to use a setup key, see:\n\n https://docs.netbird.io/how-to/register-machines-using-setup-keys\n") } } diff --git a/client/cmd/status.go b/client/cmd/status.go index 119944d08..5d741462b 100644 --- a/client/cmd/status.go +++ b/client/cmd/status.go @@ -120,7 +120,7 @@ func statusFunc(cmd *cobra.Command, args []string) error { " netbird up \n\n"+ "If you are running a self-hosted version and no SSO provider has been configured in your Management Server,\n"+ "you can use a setup-key:\n\n netbird up --management-url --setup-key \n\n"+ - "More info: https://www.netbird.io/docs/overview/setup-keys\n\n", + "More info: https://docs.netbird.io/how-to/register-machines-using-setup-keys\n\n", resp.GetStatus(), ) return nil diff --git a/client/internal/dns/server.go b/client/internal/dns/server.go index 6dd8f1904..31946c13e 100644 --- a/client/internal/dns/server.go +++ b/client/internal/dns/server.go @@ -238,7 +238,7 @@ func (s *DefaultServer) applyConfiguration(update nbdns.Config) error { hostUpdate := s.currentConfig if s.service.RuntimePort() != defaultPort && !s.hostManager.supportCustomPort() { log.Warnf("the DNS manager of this peer doesn't support custom port. Disabling primary DNS setup. " + - "Learn more at: https://netbird.io/docs/how-to-guides/nameservers#local-resolver") + "Learn more at: https://docs.netbird.io/how-to/manage-dns-in-your-network#local-resolver") hostUpdate.routeAll = false }