mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-07 06:55:24 +02:00
Self-hosted file management and sharing system with multi-cloud storage support. Includes PostgreSQL and Redis for database and caching.
17 lines
311 B
TOML
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}"
|