Add static resource cache-control headers

This commit is contained in:
Simon Marsh 2021-12-30 09:59:53 +00:00
parent 3b44817704
commit 6be520ca84

View File

@ -214,7 +214,10 @@ func webServerStart(l net.Listener) {
}
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("/favicon.ico", fs)