我正在尝试使用 traefik 设置 minio 服务器,但共享 URL 指向内部网络 ip 而不是我的域

发布于 2025-01-10 07:19:48 字数 669 浏览 3 评论 0原文

我从这个链接有完全相同的设置和问题 Minio install Behind Traefik

我正在寻找修复这个实际指向的共享 URL一些 docker 内部 URL

URL 不显示我的域

显然你必须告诉 minio 服务器生成的 URL 应该指向哪个域。

但是,如果我设置 MINIO_SERVER_URL 指向我的域,我会收到随机 TLS 错误,并且没有来自 LetsEncrypt 的证书。

在某些情况下,我获得了 consoleserver 域证书,但随后我无法通过以下错误登录

登录错误

希望我能得到一些关于这个周末我花在阅读上的时间码头并打扰各地的人们

I have the exact same setup and issue from this link Minio install behind Traefik

I was looking to fix this sharing URL actually pointing to some docker intenal URL

URL not displaying my domain

Obviously you must tell minio server what domain generated URLs should be pointint at.

But, in case I setup MINIO_SERVER_URL pointing to my domain I get random TLS errors and no certificates from letsencrypt.

There is random cases where I get the console and server domain certificates, but then I cannot login by the following error

login error

Hope I can get some insights regarding the amount of time I spent this weekend reading docks and bothering people everywhere ????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

粉红×色少女 2025-01-17 07:19:48

我尝试了很多方法来解决这个问题并以这个解决方案结束:
https://forum.cloudron.io/post/46317

我得到了在 MinIO docker 中配置域的解决方案
容器:

只需在 mino.env 中进行这些更改

MINIO_SITE_NAME=***
MINIO_SITE_REGION=***
MINIO_ROOT_USER=***
MINIO_ROOT_PASSWORD=***
MINIO_SERVER_URL=https://api.example.com
MINIO_BROWSER_REDIRECT_URL=https://minio.example.com

修复后,它就按预期工作了。

I tried too many ways to come over this issue and ended with this solution:
https://forum.cloudron.io/post/46317

I got the solution for configuring the domain in the MinIO docker
container:

Just make these changes in the mino.env

MINIO_SITE_NAME=***
MINIO_SITE_REGION=***
MINIO_ROOT_USER=***
MINIO_ROOT_PASSWORD=***
MINIO_SERVER_URL=https://api.example.com
MINIO_BROWSER_REDIRECT_URL=https://minio.example.com

After implementing the fix, it worked as expected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文