Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 lines
444B

  1. package middleware
  2. import "net/http"
  3. // NoCache writes the proper response headers to inform
  4. // the client side not to cache the response's content.
  5. func NoCache(next http.Handler) http.Handler {
  6. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  7. w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
  8. w.Header().Set("Pragma", "no-cache")
  9. w.Header().Set("Expires", "0")
  10. next.ServeHTTP(w, r)
  11. })
  12. }