Files
templates/blueprints/cloudreve/template.toml
Firefly ebcaed8eea Add Cloudreve template (#649)
Self-hosted file management and sharing system with multi-cloud storage support.
Includes PostgreSQL and Redis for database and caching.
2026-01-28 00:49:21 -06:00

17 lines
311 B
TOML

[variables]
main_domain = "${domain}"
db_password = "${password:32}"
db_user = "cloudreve"
db_name = "cloudreve"
[config]
[[config.domains]]
serviceName = "cloudreve"
port = 5212
host = "${main_domain}"
[config.env]
POSTGRES_PASSWORD = "${db_password}"
POSTGRES_USER = "${db_user}"
POSTGRES_DB = "${db_name}"