We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent6e5c2ef commit0727535Copy full SHA for 0727535
codersdk/deployment.go
@@ -2203,10 +2203,10 @@ type AppHostResponse struct {
2203
Hoststring`json:"host"`
2204
}
2205
2206
-// AppHost returns the site-wide application wildcard hostname without the
2207
-//leading "*.",e.g. "apps.coder.com". Apps are accessible at:
2208
-// "<app-name>--<agent-name>--<workspace-name>--<username>.<app-host>", e.g.
2209
-// "my-app--agent--workspace--username.apps.coder.com".
+// AppHost returns the site-wide application wildcard hostname
+// e.g. "*--apps.coder.com". Apps are accessible at:
+// "<app-name>--<agent-name>--<workspace-name>--<username><app-host>", e.g.
+// "my-app--agent--workspace--username--apps.coder.com".
2210
//
2211
// If the app host is not set, the response will contain an empty string.
2212
func (c*Client)AppHost(ctx context.Context) (AppHostResponse,error) {