Change default options for cors to handle HEAD and allow all headers

This commit is contained in:
Harshavardhana 2015-10-30 11:49:08 -07:00
parent 7df81f8707
commit bd0436bf98

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 -