Merge branch 'master' into acme2

This commit is contained in:
Toby 2024-06-10 15:20:57 -07:00
commit bc0e18980b
3 changed files with 57 additions and 12 deletions

View file

@ -278,6 +278,11 @@ func sendSimpleResponse(conn net.Conn, req *http.Request, statusCode int) error
ProtoMinor: req.ProtoMinor,
Header: http.Header{},
}
// Remove the "Content-Length: 0" header, some clients (e.g. ffmpeg) may not like it.
resp.ContentLength = -1
// Also, prevent the "Connection: close" header.
resp.Close = false
resp.Uncompressed = true
return resp.Write(conn)
}