mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* feat: add MediaFetch template * Corrected .toml * .toml * Updated template to version 1.3.5 * Codex issues raised now fixed * Codex issues addressed * TOML Update
23 lines
455 B
TOML
23 lines
455 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
PORT="3002"
|
|
PUBLIC_BASE_URL="https://${main_domain}"
|
|
OUTPUT_DIR="/data/downloads"
|
|
BASIC_AUTH_USER = "admin"
|
|
BASIC_AUTH_PASS = "changeme"
|
|
MAX_CONCURRENT_JOBS="2"
|
|
JOB_TIMEOUT_MS="600000"
|
|
VERSION_CHECK_TTL_MS="21600000"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
name = "Domain"
|
|
serviceName = "mediafetch"
|
|
port = "3002"
|
|
host = "${main_domain}"
|
|
|
|
[[config.mounts]]
|
|
name = "Downloads"
|
|
filePath = "/data/downloads"
|
|
content = "mediafetch" |