diff --git a/pkg/server/root.go b/pkg/server/root.go index 56f5c4fce..67098bb59 100644 --- a/pkg/server/root.go +++ b/pkg/server/root.go @@ -142,11 +142,13 @@ func (rh *RootHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) { configLink := "" if auth.IsLocalhost(req) { - configLink = "

If you're coming from localhost, hit /setup.

" + configLink = "

If you're coming from localhost, configure your Camlistore server at /setup.

" } fmt.Fprintf(rw, "This is camlistored, a "+ "Camlistore server."+ - "%s\n", configLink) + "%s"+ + "

To manage your content, access the /ui.

\n", + configLink) } type byFromTo []*SyncHandler