mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add caching to static assets when served from blob handler.
This commit is contained in:
parent
212775bfc4
commit
4e941255d8
|
@ -61,5 +61,6 @@ func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
contentType = mimeMap[parts[len(parts)-1]]
|
contentType = mimeMap[parts[len(parts)-1]]
|
||||||
}
|
}
|
||||||
w.Header().Set("Content-Type", contentType)
|
w.Header().Set("Content-Type", contentType)
|
||||||
|
w.Header().Set("Cache-Control", "public, max-age=259200")
|
||||||
w.Write(file)
|
w.Write(file)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue