Allow CORS Final-Length header

This commit is contained in:
Kevin van Zonneveld 2013-05-08 15:51:17 +02:00
parent 022ad36077
commit ad47388d80
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func main() {
// routes and methods that need it.
w.Header().Add("Access-Control-Allow-Origin", "*")
w.Header().Add("Access-Control-Allow-Methods", "HEAD,GET,PUT,POST,DELETE")
w.Header().Add("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Content-Range, Content-Disposition")
w.Header().Add("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Content-Range, Content-Disposition, Final-Length")
w.Header().Add("Access-Control-Expose-Headers", "Location, Range, Content-Disposition")
if r.Method == "OPTIONS" {