ekko: gzip config option

This commit is contained in:
2024-12-01 16:45:49 -08:00
parent 68bd4d8904
commit b926a85737
2 changed files with 13 additions and 1 deletions

View File

@@ -114,7 +114,11 @@ func (ek *Ekko) setup(ctx context.Context) (*echo.Echo, error) {
}))
}
e.Use(middleware.Gzip())
if ek.gzipConfig != nil {
e.Use(middleware.GzipWithConfig(*ek.gzipConfig))
} else {
e.Use(middleware.Gzip())
}
e.Use(middleware.Secure())