tendermint/rpc/http_server.go

24 lines
508 B
Go
Raw Normal View History

2014-11-27 04:04:07 -08:00
package rpc
import (
"fmt"
"net/http"
. "github.com/tendermint/tendermint/config"
)
func StartHTTPServer() {
//http.HandleFunc("/path", handler)
//http.HandleFunc("/path", handler)
// Serve HTTP on localhost only.
// Let something like Nginx handle HTTPS connections.
address := fmt.Sprintf("127.0.0.1:%v", Config.RPC.HTTPPort)
log.Info("Starting RPC HTTP server on http://%s", address)
go func() {
log.Fatal(http.ListenAndServe(address, RecoverAndLogHandler(http.DefaultServeMux)))
}()
}