From 756ebc7f31496022f35d559664f91d968db66194 Mon Sep 17 00:00:00 2001 From: ZeroWing-Automator Date: Tue, 5 May 2026 15:12:39 +0500 Subject: [PATCH] Create template.toml --- blueprints/matomo/template.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 blueprints/matomo/template.toml diff --git a/blueprints/matomo/template.toml b/blueprints/matomo/template.toml new file mode 100644 index 00000000..cd432fe4 --- /dev/null +++ b/blueprints/matomo/template.toml @@ -0,0 +1,18 @@ +[variables] +main_domain = "${domain}" +db_password = "${password:16}" +db_root_password = "${password:16}" +db_user = "matomo" +db_name = "matomo" + +[config] +[[config.domains]] +serviceName = "matomo" +port = 80 +host = "${main_domain}" + +[config.env] +MATOMO_DB_USER = "${db_user}" +MATOMO_DB_PASSWORD = "${db_password}" +MATOMO_DB_NAME = "${db_name}" +MYSQL_ROOT_PASSWORD = "${db_root_password}"