Closed zimBlue closed 2 weeks ago
你好 我这里是自建了一个minio仓库 接口使用的时候是 192.168.X.X:9000 但是代码中大部分获取client的地方都是写死了https开头的 例如 endpoint: endpoint.includes('https://') ? endpoint : https://${endpoint}, 也许可以改成 endpoint: /^https?:\/\//.test(endpoint) ? endpoint : https://${endpoint}
https://${endpoint}
非常感谢您提交了 issues,我们很高兴能够与您一起合作解决这个问题。我们将尽快进行审核,并会在 24 小时内回复您。在此期间,如有任何问题,请随时联系我们。再次感谢您的贡献!
您自建的不套一个 https 的嘛......
您说的也是个办法 我现在用nginx加了个https 也可以使用了 但一开始的时候也只打算让仓库内网访问 现在开放到公网有点隐隐不安 不过也可以看看minio加密部分来加强下
你好 我这里是自建了一个minio仓库 接口使用的时候是 192.168.X.X:9000 但是代码中大部分获取client的地方都是写死了https开头的 例如
endpoint: endpoint.includes('https://') ? endpoint :
https://${endpoint}
, 也许可以改成 endpoint: /^https?:\/\//.test(endpoint) ? endpoint :https://${endpoint}