2016-11-28 20:30:42 -08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
"github.com/labstack/echo/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
e := echo.New()
|
2016-12-02 09:28:18 -08:00
|
|
|
// e.AutoTLSManager.HostPolicy = autocert.HostWhitelist("<your_domain>")
|
2017-01-03 01:36:37 +01:00
|
|
|
// Store the certificate to avoid issues with rate limits (https://letsencrypt.org/docs/rate-limits/)
|
|
|
|
// e.AutoTLSManager.Cache = autocert.DirCache("<path to store key and certificate>")
|
2016-11-28 20:30:42 -08: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 13:06:36 -08:00
|
|
|
e.Logger.Fatal(e.StartAutoTLS(":443"))
|
2016-11-28 20:30:42 -08:00
|
|
|
}
|