2016-11-29 06:30:42 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
"github.com/labstack/echo/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
e := echo.New()
|
2016-12-02 19:28:18 +02:00
|
|
|
// e.AutoTLSManager.HostPolicy = autocert.HostWhitelist("<your_domain>")
|
2016-11-29 06:30:42 +02:00
|
|
|
e.Use(middleware.Recover())
|
|
|
|
e.Use(middleware.Logger())
|
|
|
|
e.GET("/", func(c echo.Context) error {
|
|
|
|
return c.HTML(http.StatusOK, `
|
|
|
|
<h1>Welcome to Echo!</h1>
|
|
|
|
<h3>TLS certificates automatically installed from Let's Encrypt :)</h3>
|
|
|
|
`)
|
|
|
|
})
|
2016-12-11 23:06:36 +02:00
|
|
|
e.Logger.Fatal(e.StartAutoTLS(":443"))
|
2016-11-29 06:30:42 +02:00
|
|
|
}
|