Middleware that provides ipfilter support for echo framework backed by jpillora/ipfilter.
go get github.com/crazy-max/echo-ipfilter
package main
import (
"net/http"
ipfilter "github.com/crazy-max/echo-ipfilter"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
)
func main() {
e := echo.New()
e.Use(ipfilter.MiddlewareWithConfig(ipfilter.Config{
Skipper: middleware.DefaultSkipper,
WhiteList: []string{
"10.1.1.0/24",
"10.1.2.0/24",
},
BlockByDefault: true,
}))
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!\n")
})
e.Logger.Fatal(e.Start(":1323"))
}
Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. You can also support this project by becoming a sponsor on GitHub or by making a Paypal donation to ensure this journey continues indefinitely!
Thanks again for your support, it is much appreciated! 🙏
MIT. See LICENSE
for more details.