mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-10 08:25:23 +02:00
24 lines
444 B
TOML
24 lines
444 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
second_domain = "${domain}"
|
|
secret_base = "${base64:64}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "dash"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
[[config.domains]]
|
|
serviceName = "status-page"
|
|
port = 3001
|
|
host = "${second_domain}"
|
|
|
|
|
|
[config.env]
|
|
BETTER_AUTH_SECRET = "${secret_base}"
|
|
BETTER_AUTH_URL = "${main_domain}"
|
|
NEXT_PUBLIC_URL = "${main_domain}"
|
|
DASH_PORT=3000
|
|
STATUS_PAGE_PORT=3001
|
|
|
|
[[config.mounts]] |