mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 17:52:30 +08:00
allow for appropriate content-type to be set (#36545)
This commit is contained in:
@ -294,14 +294,12 @@ func (hs *HTTPServer) GetPluginAssets(c *models.ReqContext) response.Response {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resp := response.CreateNormalResponse(
|
resp := response.CreateNormalResponse(
|
||||||
http.Header{"Content-Type": []string{"text/plain", "charset=utf-8"}},
|
http.Header{"Cache-Control": []string{"public", "max-age=3600"}},
|
||||||
[]byte{},
|
[]byte{},
|
||||||
200)
|
200)
|
||||||
|
|
||||||
if hs.Cfg.Env == setting.Dev {
|
if hs.Cfg.Env == setting.Dev {
|
||||||
resp.SetHeader("Cache-Control", "max-age=0, must-revalidate, no-cache")
|
resp.SetHeader("Cache-Control", "max-age=0, must-revalidate, no-cache")
|
||||||
} else {
|
|
||||||
resp.SetHeader("Cache-Control", "public, max-age=3600")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
http.ServeContent(resp, c.Req.Request, pluginFilePath, fi.ModTime(), f)
|
http.ServeContent(resp, c.Req.Request, pluginFilePath, fi.ModTime(), f)
|
||||||
|
Reference in New Issue
Block a user