1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-28 08:38:39 +02:00

Add directory to store the certificate and mention rate limits (#795)

The certificate must be cached to avoid problems with rate limits during testing.
This commit is contained in:
Tobias Schwarz 2017-01-03 01:36:37 +01:00 committed by Vishal Rana
parent eb7ebca112
commit ab203bf19c

View File

@ -10,6 +10,8 @@ import (
func main() {
e := echo.New()
// e.AutoTLSManager.HostPolicy = autocert.HostWhitelist("<your_domain>")
// 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>")
e.Use(middleware.Recover())
e.Use(middleware.Logger())
e.GET("/", func(c echo.Context) error {