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

master
Harshavardhana 9 years ago
parent 7df81f8707
commit bd0436bf98
  1. 7
      generic-handlers.go

@ -120,7 +120,12 @@ func (h timeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// CorsHandler handler for CORS (Cross Origin Resource Sharing) // CorsHandler handler for CORS (Cross Origin Resource Sharing)
func CorsHandler(h http.Handler) http.Handler { 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 - // IgnoreResourcesHandler -

Loading…
Cancel
Save