Auto TLS

这个例子演示如何自动从 Let’s Encrypt 获得 TLS 证书。 Echo#StartAutoTLS 接受一个接听 443 端口的网络地址。类似 <DOMAIN>:443 这样。

如果没有错误,访问 https://<DOMAIN> ,可以看到一个 TLS 加密的欢迎界面。

服务器

server.go

  1. package main
  2. import (
  3. "net/http"
  4. "github.com/labstack/echo"
  5. "github.com/labstack/echo/middleware"
  6. )
  7. func main() {
  8. e := echo.New()
  9. // e.AutoTLSManager.HostPolicy = autocert.HostWhitelist("<your_domain>")
  10. // Store the certificate to avoid issues with rate limits (https://letsencrypt.org/docs/rate-limits/)
  11. // e.AutoTLSManager.Cache = autocert.DirCache("<path to store key and certificate>")
  12. e.Use(middleware.Recover())
  13. e.Use(middleware.Logger())
  14. e.GET("/", func(c echo.Context) error {
  15. return c.HTML(http.StatusOK, `
  16. <h1>Welcome to Echo!</h1>
  17. <h3>TLS certificates automatically installed from Let's Encrypt :)</h3>
  18. `)
  19. })
  20. e.Logger.Fatal(e.StartAutoTLS(":443"))
  21. }