mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
8f0d340f34
Signed-off-by: Vishal Rana <vr@labstack.com>
23 lines
497 B
Go
23 lines
497 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo"
|
|
"github.com/labstack/echo/middleware"
|
|
)
|
|
|
|
func main() {
|
|
e := echo.New()
|
|
// e.AutoTLSManager.HostPolicy = autocert.HostWhitelist("<your_domain>")
|
|
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>
|
|
`)
|
|
})
|
|
e.Logger.Fatal(e.StartAutoTLS(":443"))
|
|
}
|