We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
https://coder.com on
1 parent a26dfb7 commit 00ed52aCopy full SHA for 00ed52a
tunneld/api.go
@@ -41,6 +41,10 @@ func (api *API) Router() chi.Router {
41
}),
42
)
43
44
+ r.Get("/", func(w http.ResponseWriter, r *http.Request) {
45
+ w.WriteHeader(http.StatusOK)
46
+ _, _ = w.Write([]byte("https://coder.com"))
47
+ })
48
r.Post("/tun", api.postTun)
49
r.Post("/api/v2/clients", api.postClients)
50
0 commit comments