Fix HEAD method for robots.txt (#30603)

Fix #30601

(cherry picked from commit f60e1a1af25154160f08b85eb159c930b340df8b)
This commit is contained in:
wxiaoguang 2024-04-19 21:43:56 +08:00 committed by Gergely Nagy
parent abeea42751
commit 3330b4d5d8
No known key found for this signature in database

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)