1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-01-04 12:39:15 +00:00

Use config.json to render multiple Jinja2 templates

This commit is contained in:
FreddleSpl0it
2025-05-22 14:07:39 +02:00
parent 13b4f86d29
commit dba9675a9b
18 changed files with 329 additions and 88 deletions

View File

@@ -0,0 +1,26 @@
[
{
"template": "opcache-recommended.ini.j2",
"output": "/usr/local/etc/php/conf.d/opcache-recommended.ini"
},
{
"template": "pools.conf.j2",
"output": "/usr/local/etc/php-fpm.d/z-pools.conf"
},
{
"template": "other.ini.j2",
"output": "/usr/local/etc/php/conf.d/zzz-other.ini"
},
{
"template": "upload.ini.j2",
"output": "/usr/local/etc/php/conf.d/upload.ini"
},
{
"template": "session_store.ini.j2",
"output": "/usr/local/etc/php/conf.d/session_store.ini"
},
{
"template": "0081-custom-mailcow.css.j2",
"output": "/web/css/build/0081-custom-mailcow.css"
}
]