Add static resource cache-control headers
This commit is contained in:
parent
3b44817704
commit
6be520ca84
@ -214,7 +214,10 @@ func webServerStart(l net.Listener) {
|
|||||||
}
|
}
|
||||||
fs := http.FileServer(http.FS(subfs))
|
fs := http.FileServer(http.FS(subfs))
|
||||||
|
|
||||||
http.Handle("/static/", fs)
|
http.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("Cache-Control", "public, max-age=86400")
|
||||||
|
fs.ServeHTTP(w, r)
|
||||||
|
})
|
||||||
http.Handle("/robots.txt", fs)
|
http.Handle("/robots.txt", fs)
|
||||||
http.Handle("/favicon.ico", fs)
|
http.Handle("/favicon.ico", fs)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user