mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-05 05:47:37 +03:00
feat: add caching into image proxy
This commit is contained in:
parent
6d6ffa16ff
commit
edc2b04198
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ func ImageProxy(l *logrus.Logger) http.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
w.Header().Add("Content-type", fmt.Sprintf("image/%s", ext))
|
w.Header().Add("Content-type", fmt.Sprintf("image/%s", ext))
|
||||||
|
w.Header().Add("Cache-Control", "max-age=1296000")
|
||||||
if _, err = io.Copy(w, res.Body); err != nil {
|
if _, err = io.Copy(w, res.Body); err != nil {
|
||||||
l.Errorln("unable to write image", err)
|
l.Errorln("unable to write image", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue