templates/blueprints/minio/template.toml
Jonathan Gotti 2d5a878cfe
♻️ Refacto minio template (#65)
* ♻️ Refacto minio template

- add random password generation
- forward port 9000 and expose 9001 through traefik
- add some comments to add some volume setting info

* 🔧 Remove domain config for port 9000

- 🐛 Fix redirection loop by adding MINIO_BROWSER_REDIRECT=false
2025-05-07 01:11:24 -06:00

18 lines
334 B
TOML

[variables]
main_domain = "${domain}"
api_domain = "${domain}"
[config]
mounts = []
[[config.domains]]
serviceName = "minio"
port = 9_001
host = "${main_domain}"
[config.env]
MINIO_ROOT_USER = "minioadmin"
MINIO_ROOT_PASSWORD = "${password:16}"
MINIO_BROWSER_REDIRECT_URL = "http://${main_domain}"
MINIO_BROWSER_REDIRECT = "false"