mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-15 23:02:03 -05:00
- gel: allow plain HTTP for the reverse proxy (GEL_SERVER_HTTP_ENDPOINT_SECURITY=optional), enable admin UI and point the domain at /ui - keydb: remove HTTP domain and published port — pure Redis-protocol DB reachable via internal network - leantime: image serves on 8080 (non-root nginx), add required LEAN_APP_URL and LEAN_SESSION_PASSWORD, use utf8mb4 - matomo: removed from this PR, already fixed in #765 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
512 B
TOML
22 lines
512 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_password = "${password:16}"
|
|
db_root_password = "${password:16}"
|
|
db_user = "leantime"
|
|
db_name = "leantime"
|
|
session_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "leantime"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
LEAN_APP_URL = "http://${main_domain}"
|
|
LEAN_SESSION_PASSWORD = "${session_password}"
|
|
LEAN_DB_USER = "${db_user}"
|
|
LEAN_DB_PASSWORD = "${db_password}"
|
|
LEAN_DB_DATABASE = "${db_name}"
|
|
MYSQL_ROOT_PASSWORD = "${db_root_password}"
|