add new line
This commit is contained in:
parent
50797e7693
commit
ba7c28edd2
1 changed files with 4 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
|||
|
||||
AllowOverride All
|
||||
</Directory>
|
||||
## End of root directory
|
||||
{% endif %}
|
||||
|
||||
{% if item.directories is defined %}{% for directory in item.directories %}
|
||||
|
@ -62,11 +63,13 @@
|
|||
{% if directory.options is defined %}
|
||||
Options {% for option in directory.options %}{{ option }} {% endfor %}
|
||||
{% endif %}
|
||||
|
||||
AllowOverride {{ directory.allow_override | default("All") }}
|
||||
Require {{ directory.require | default("all granted") }}
|
||||
{{ directory.custom_code | default("") }}
|
||||
</Directory>
|
||||
{% endfor %}{% endif %}
|
||||
## End of directories
|
||||
|
||||
{% if item.directoriesmatches is defined %}{% for directorymatch in item.directoriesmatches %}
|
||||
<DirectoryMatch "{{ directorymatch.path }}">
|
||||
|
@ -79,6 +82,7 @@
|
|||
{{ directorymatch.custom_code | default("") }}
|
||||
</DirectoryMatch>
|
||||
{% endfor %}{% endif %}
|
||||
## End of directorymatches
|
||||
|
||||
## Logging
|
||||
ErrorLog "/var/log/apache2/{{ item.vhostname }}_error_ssl.log"
|
||||
|
|
Loading…
Reference in a new issue