Merge pull request #950 from harshavardhana/enhance-cors

Change default options for cors to handle HEAD and allow all headers
This commit is contained in:
Harshavardhana 2015-10-30 12:14:21 -07:00
commit 7d38967f22

View File

@ -120,7 +120,12 @@ func (h timeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// CorsHandler handler for CORS (Cross Origin Resource Sharing)
func CorsHandler(h http.Handler) http.Handler {
return cors.Default().Handler(h)
c := cors.New(cors.Options{
AllowedOrigins: []string{"*"},
AllowedMethods: []string{"GET", "HEAD", "POST"},
AllowedHeaders: []string{"*"},
})
return c.Handler(h)
}
// IgnoreResourcesHandler -