fix endif

This commit is contained in:
Antonio J. Delgado 2023-03-27 13:14:22 +03:00
parent 3c0cdaca86
commit 0814a1bd2c

View file

@ -64,8 +64,8 @@
Options {% for option in directory.options %}{{ option }} {% endfor %} Options {% for option in directory.options %}{{ option }} {% endfor %}
{% endif %} {% endif %}
{% if directory.allow_override is defined %}AllowOverride {{ directory.allow_override }} {% if directory.allow_override is defined %}AllowOverride {{ directory.allow_override }}{% endif %}
{% if directory.require is defined %}Require {{ directory.require }} {% if directory.require is defined %}Require {{ directory.require }}{% endif %}
{{ directory.custom_code | default("") }} {{ directory.custom_code | default("") }}
</Directory> </Directory>
{% endfor %}{% endif %} {% endfor %}{% endif %}
@ -77,8 +77,8 @@
Options {% for option in directorymatch.options %}{{ option }} {% endfor %} Options {% for option in directorymatch.options %}{{ option }} {% endfor %}
{% endif %} {% endif %}
{% if directory.allow_override is defined %}AllowOverride {{ directory.allow_override }} {% if directory.allow_override is defined %}AllowOverride {{ directory.allow_override }}{% endif %}
{% if directory.require is defined %}Require {{ directory.require }} {% if directory.require is defined %}Require {{ directory.require }}{% endif %}
{{ directorymatch.custom_code | default("") }} {{ directorymatch.custom_code | default("") }}
</DirectoryMatch> </DirectoryMatch>
{% endfor %}{% endif %} {% endfor %}{% endif %}