famosss
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
weed/s3api/s3api_server.go
|
|
@ -88,9 +88,11 @@ func (s3a *S3ApiServer) registerRouter(router *mux.Router) { |
|
|
|
apiRouter.Methods("GET").Path("/status").HandlerFunc(s3a.StatusHandler) |
|
|
|
|
|
|
|
apiRouter.Methods("OPTIONS").HandlerFunc( |
|
|
|
func(w http.ResponseWriter, r *http.Request){ |
|
|
|
func(w http.ResponseWriter, r *http.Request) { |
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") |
|
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true") |
|
|
|
w.Header().Set("Access-Control-Expose-Headers", "*") |
|
|
|
w.Header().Set("Access-Control-Allow-Methods", "*") |
|
|
|
w.Header().Set("Access-Control-Allow-Headers", "*") |
|
|
|
writeSuccessResponseEmpty(w, r) |
|
|
|
}) |
|
|
|
|
|
|
|