besscroft / PicImpact

PicImpact 是一个摄影师专用的摄影作品展示网站,基于 Next.js + Hono.js 开发。今天又是想当二次元摄影高手的一天呢!
https://pic.besscroft.com
MIT License
718 stars 107 forks source link

自建仓库默认走https协议 #135

Closed zimBlue closed 2 weeks ago

zimBlue commented 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}

github-actions[bot] commented 2 weeks ago

非常感谢您提交了 issues,我们很高兴能够与您一起合作解决这个问题。我们将尽快进行审核,并会在 24 小时内回复您。在此期间,如有任何问题,请随时联系我们。再次感谢您的贡献!

besscroft commented 2 weeks ago

您自建的不套一个 https 的嘛......

zimBlue commented 2 weeks ago

您说的也是个办法 我现在用nginx加了个https 也可以使用了 但一开始的时候也只打算让仓库内网访问 现在开放到公网有点隐隐不安 不过也可以看看minio加密部分来加强下