diff --git a/node/api.go b/node/api.go index 2e69f50..b2c5df8 100644 --- a/node/api.go +++ b/node/api.go @@ -5,7 +5,6 @@ import ( "io/ioutil" "net/http" "strings" - "time" "github.com/gorilla/mux" log "github.com/sirupsen/logrus" @@ -227,15 +226,15 @@ func Serve(listen string, es ESConf) { // Simple and clean SSR UI ssr := newSSR("./templates", es) - r.HandleFunc("/ssr", ssr.ssrRootHandler) + r.HandleFunc("/", ssr.ssrRootHandler) http.Handle("/", r) srv := http.Server{ - Handler: r, - Addr: listen, - WriteTimeout: 15 * time.Second, - ReadTimeout: 15 * time.Second, + Handler: r, + Addr: listen, + // WriteTimeout: 15 * time.Second, + // ReadTimeout: 15 * time.Second, } log.Print("Listening IDEC API on ", listen) diff --git a/node/elastic.go b/node/elastic.go index 0a22b5e..660ae63 100644 --- a/node/elastic.go +++ b/node/elastic.go @@ -254,7 +254,7 @@ func (es ESConf) GetUEchoMessageHashes(echoes string) []string { o, err := strconv.Atoi(oflim[0]) l, err := strconv.Atoi(oflim[1]) if err != nil { - log.Print(err) + log.Error(err) } else { offset = o limit = l diff --git a/templates/post.html b/templates/post.html index f5a05a6..0cad48d 100644 --- a/templates/post.html +++ b/templates/post.html @@ -1,4 +1,10 @@ {{ define "post" }} +