bskyweb: publish Bluesky IPs

This commit is contained in:
Jake Gold 2023-08-03 11:02:34 -07:00
parent 96280d5f1a
commit 3ae5a6b631
3 changed files with 32 additions and 0 deletions

View file

@ -151,6 +151,8 @@ func serve(cctx *cli.Context) error {
return http.FS(fsys)
}())
e.GET("/robots.txt", echo.WrapHandler(staticHandler))
e.GET("/ips-v4", echo.WrapHandler(staticHandler))
e.GET("/ips-v6", echo.WrapHandler(staticHandler))
e.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", staticHandler)))
e.GET("/.well-known/*", echo.WrapHandler(staticHandler))
e.GET("/security.txt", func(c echo.Context) error {