blob: 562fccc1d5989a5c255f75fe2c11f2a17ba028ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package server
import (
"net/http"
cfg "searchix/internal/config"
)
func AddHeadersMiddleware(next http.Handler, config *cfg.Config) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
for h, v := range config.Web.Headers {
w.Header().Add(h, v)
}
w.Header().Add("Content-Security-Policy", config.Web.ContentSecurityPolicy.String())
w.Header().Add("Server", "searchix/"+cfg.ShortSHA)
next.ServeHTTP(w, r)
})
}
|