mirror of
https://github.com/minio/minio.git
synced 2025-04-20 18:44:21 -04:00
parent
993a79d9c6
commit
1cfd4a48d9
@ -379,6 +379,20 @@ type resourceHandler struct {
|
|||||||
|
|
||||||
// setCorsHandler handler for CORS (Cross Origin Resource Sharing)
|
// setCorsHandler handler for CORS (Cross Origin Resource Sharing)
|
||||||
func setCorsHandler(h http.Handler) http.Handler {
|
func setCorsHandler(h http.Handler) http.Handler {
|
||||||
|
commonS3Headers := []string{
|
||||||
|
"Date",
|
||||||
|
"ETag",
|
||||||
|
"Server",
|
||||||
|
"Connection",
|
||||||
|
"Accept-Ranges",
|
||||||
|
"Content-Range",
|
||||||
|
"Content-Encoding",
|
||||||
|
"Content-Length",
|
||||||
|
"Content-Type",
|
||||||
|
"X-Amz*",
|
||||||
|
"x-amz*",
|
||||||
|
"*",
|
||||||
|
}
|
||||||
|
|
||||||
c := cors.New(cors.Options{
|
c := cors.New(cors.Options{
|
||||||
AllowedOrigins: []string{"*"},
|
AllowedOrigins: []string{"*"},
|
||||||
@ -391,8 +405,8 @@ func setCorsHandler(h http.Handler) http.Handler {
|
|||||||
http.MethodOptions,
|
http.MethodOptions,
|
||||||
http.MethodPatch,
|
http.MethodPatch,
|
||||||
},
|
},
|
||||||
AllowedHeaders: []string{"*"},
|
AllowedHeaders: commonS3Headers,
|
||||||
ExposedHeaders: []string{"*"},
|
ExposedHeaders: commonS3Headers,
|
||||||
AllowCredentials: true,
|
AllowCredentials: true,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user