mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-15 02:45:24 +02:00
17 lines
386 B
TOML
17 lines
386 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
database_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "hedgedoc"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
POSTGRES_PASSWORD = "${database_password}"
|
|
CMD_DB_URL = "postgres://hedgedoc:${database_password}@database:5432/hedgedoc"
|
|
CMD_DOMAIN = "${main_domain}"
|
|
CMD_PROTOCOL_USESSL = "true"
|
|
CMD_URL_ADDPORT = "false"
|