1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-21 02:46:15 +02:00

Fix HEAD method for robots.txt (#30603)

Fix #30601
This commit is contained in:
wxiaoguang 2024-04-19 21:43:56 +08:00 committed by GitHub
parent eb24d973b0
commit f60e1a1af2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -258,7 +258,7 @@ func Routes() *web.Route {
routes.Get("/metrics", append(mid, Metrics)...)
}
routes.Get("/robots.txt", append(mid, misc.RobotsTxt)...)
routes.Methods("GET,HEAD", "/robots.txt", append(mid, misc.RobotsTxt)...)
routes.Get("/ssh_info", misc.SSHInfo)
routes.Get("/api/healthz", healthcheck.Check)