Skip to content

Commit

Permalink
lib/httpserver: add handler to serve /robots.txt and deny search in…
Browse files Browse the repository at this point in the history
…dexing (#4143)

This handler will instruct search engines that indexing is not allowed for the content exposed to the internet. This should help to address issues like #4128 when instances are exposed to the internet without authentication.
  • Loading branch information
zekker6 authored and valyala committed May 8, 2023
1 parent 520bb77 commit 2c6fd59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Expand Up @@ -15,6 +15,8 @@ The following tip changes can be tested by building VictoriaMetrics components f

## v1.79.x long-time support release (LTS)

* SECURITY: serve `/robots.txt` content to disallow indexing of the exposed instances by search engines. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4128) for details.

## [v1.79.12](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.79.12)

Released at 2023-04-06
Expand Down
5 changes: 5 additions & 0 deletions lib/httpserver/httpserver.go
Expand Up @@ -316,6 +316,11 @@ func handlerWrapper(s *server, w http.ResponseWriter, r *http.Request, rh Reques
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1833
fmt.Fprintf(w, "VictoriaMetrics is Ready.\n")
return
case "/robots.txt":
// This prevents search engines from indexing contents
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4128
fmt.Fprintf(w, "User-agent: *\nDisallow: /\n")
return
default:
if strings.HasPrefix(r.URL.Path, "/debug/pprof/") {
pprofRequests.Inc()
Expand Down

0 comments on commit 2c6fd59

Please sign in to comment.