From 76039ada7eea310180fd37d3c879e10f65b8c096 Mon Sep 17 00:00:00 2001 From: Denis Zheleztsov Date: Thu, 25 Mar 2021 18:25:40 +0300 Subject: [PATCH] [Static]: move to root --- node/api.go | 11 +++++------ node/elastic.go | 2 +- templates/post.html | 6 ++++++ 3 files changed, 12 insertions(+), 7 deletions(-) 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" }} +