mirror of
https://github.com/minio/minio.git
synced 2025-02-28 13:59:15 -05:00
fix: cors should be available on all paths (#10020)
This commit is contained in:
parent
c0adb52213
commit
3f1902face
@ -301,10 +301,7 @@ func registerAPIRouter(router *mux.Router, encryptionEnabled, allowSSEKMS bool)
|
|||||||
maxClients(collectAPIStats("listbuckets", httpTraceAll(api.ListBucketsHandler))))
|
maxClients(collectAPIStats("listbuckets", httpTraceAll(api.ListBucketsHandler))))
|
||||||
|
|
||||||
// Supports cors only for S3 handlers
|
// Supports cors only for S3 handlers
|
||||||
apiRouter.Methods(http.MethodOptions).Path(SlashSeparator).HandlerFunc(
|
apiRouter.Methods(http.MethodOptions).HandlerFunc(
|
||||||
maxClients(collectAPIStats("cors", httpTraceAll(corsHandlerFunc()))))
|
|
||||||
|
|
||||||
apiRouter.Methods(http.MethodOptions).Path(SlashSeparator + SlashSeparator).HandlerFunc(
|
|
||||||
maxClients(collectAPIStats("cors", httpTraceAll(corsHandlerFunc()))))
|
maxClients(collectAPIStats("cors", httpTraceAll(corsHandlerFunc()))))
|
||||||
|
|
||||||
// If none of the routes match add default error handler routes
|
// If none of the routes match add default error handler routes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user