diff --git a/cmd/cloudflared/macos_service.go b/cmd/cloudflared/macos_service.go index 43f65b20..de6a7a44 100644 --- a/cmd/cloudflared/macos_service.go +++ b/cmd/cloudflared/macos_service.go @@ -119,7 +119,7 @@ func installLaunchd(c *cli.Context) error { logger.Infof("Installing Argo Tunnel client as an user launch agent. " + "Note that Argo Tunnel client will only run when the user is logged in. " + "If you want to run Argo Tunnel client at boot, install with root permission. " + - "For more information, visit https://developers.cloudflare.com/argo-tunnel/reference/service/") + "For more information, visit https://developers.cloudflare.com/argo-tunnel/create-tunnel/run-as-service") } etPath, err := os.Executable() if err != nil { diff --git a/cmd/cloudflared/updater/update.go b/cmd/cloudflared/updater/update.go index 0acc389b..7030cc1f 100644 --- a/cmd/cloudflared/updater/update.go +++ b/cmd/cloudflared/updater/update.go @@ -20,7 +20,7 @@ import ( const ( DefaultCheckUpdateFreq = time.Hour * 24 appID = "app_idCzgxYerVD" - noUpdateInShellMessage = "cloudflared will not automatically update when run from the shell. To enable auto-updates, run cloudflared as a service: https://developers.cloudflare.com/argo-tunnel/reference/service/" + noUpdateInShellMessage = "cloudflared will not automatically update when run from the shell. To enable auto-updates, run cloudflared as a service: https://developers.cloudflare.com/argo-tunnel/create-tunnel/run-as-service" noUpdateOnWindowsMessage = "cloudflared will not automatically update on Windows systems." noUpdateManagedPackageMessage = "cloudflared will not automatically update if installed by a package manager." isManagedInstallFile = ".installedFromPackageManager" diff --git a/cmd/cloudflared/windows_service.go b/cmd/cloudflared/windows_service.go index 7b21e7f7..2ac65322 100644 --- a/cmd/cloudflared/windows_service.go +++ b/cmd/cloudflared/windows_service.go @@ -25,7 +25,7 @@ import ( const ( windowsServiceName = "Cloudflared" windowsServiceDescription = "Argo Tunnel agent" - windowsServiceUrl = "https://developers.cloudflare.com/argo-tunnel/reference/service/" + windowsServiceUrl = "https://developers.cloudflare.com/argo-tunnel/create-tunnel/run-as-service" recoverActionDelay = time.Second * 20 failureCountResetPeriod = time.Hour * 24