From a170e1efc0a74a717d2c7d36fe9130f88b18ce46 Mon Sep 17 00:00:00 2001 From: s3lph Date: Tue, 7 Feb 2023 22:12:29 +0100 Subject: [PATCH] fix(php): fix typo in php.ini --- roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 b/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 index da0aa92..c5918f3 100644 --- a/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 +++ b/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 @@ -1,7 +1,7 @@ {{ ansible_managed | comment(decoration=';;') }} {% for name, section in php_ini.items() %} -[name] +[{{ name }}] {% for key, value in section.items() %} {{ key }}={{ value }} {% endfor %}