aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/site/main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/site/main.go b/cmd/site/main.go
index 92f636d..00a0292 100644
--- a/cmd/site/main.go
+++ b/cmd/site/main.go
@@ -65,12 +65,17 @@ type Site struct {
xffmw *xff.XFF
}
+var gitRev = os.Getenv("GIT_REV")
+
func (s *Site) ServeHTTP(w http.ResponseWriter, r *http.Request) {
ctx := opname.With(r.Context(), "site.ServeHTTP")
ctx = ln.WithF(ctx, ln.F{
"user_agent": r.Header.Get("User-Agent"),
})
r = r.WithContext(ctx)
+ if gitRev != "" {
+ w.Header().Add("X-Git-Rev", gitRev)
+ }
middleware.RequestID(s.xffmw.Handler(ex.HTTPLog(s.mux))).ServeHTTP(w, r)
}