This commit is contained in:
Thomas Hansen 2015-04-27 09:39:40 -06:00
commit dbef6c73bc
3 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,9 @@ func (g Gzip) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
return g.Next.ServeHTTP(w, r)
}
r.Header.Del("Accept-Encoding") // Removes header to prevent double encoding by ambitious fastcgi implementations
// Delete this header so gzipping isn't repeated later in the chain
r.Header.Del("Accept-Encoding")
w.Header().Set("Content-Encoding", "gzip")
gzipWriter := gzip.NewWriter(w)
defer gzipWriter.Close()

View File

@ -130,5 +130,5 @@ var (
const (
envGatewayInterface = "caddy-CGI/1.1"
envServerSoftware = "caddy/?.?.?" // TODO
envServerSoftware = "caddy/" // TODO: Version
)

View File

@ -162,6 +162,8 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
if vh, ok := s.vhosts[host]; ok {
w.Header().Set("Server", "Caddy")
status, _ := vh.stack.ServeHTTP(w, r)
// Fallback error response in case error handling wasn't chained in