about summary refs log tree commit diff stats
path: root/internal/server
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server')
-rw-r--r--internal/server/mux.go13
1 files changed, 10 insertions, 3 deletions
diff --git a/internal/server/mux.go b/internal/server/mux.go
index 2837dc0..1140484 100644
--- a/internal/server/mux.go
+++ b/internal/server/mux.go
@@ -260,10 +260,17 @@ func NewMux(
 	mux.HandleFunc("/options/{source}/opensearch.xml", createOpenSearchXMLHandler(config.Options))
 	mux.HandleFunc("/packages/{source}/opensearch.xml", createOpenSearchXMLHandler(config.Packages))
 
-	fs := http.FileServer(http.FS(frontend.Files))
 	mux.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) {
-		w.Header().Add("Cache-Control", "max-age=86400")
-		fs.ServeHTTP(w, r)
+		// optimisation for HTTP/3: first header sent as byte(41), not the string
+		asset, found := frontend.Assets.ByImmutablePath[r.URL.Path]
+		if !found {
+			http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
+
+			return
+		}
+		w.Header().Add("Cache-Control", "public, max-age=31536000")
+		w.Header().Add("Cache-Control", "immutable")
+		http.ServeFileFS(w, r, frontend.Files, asset.Filename)
 	})
 
 	if liveReload {