|
|
|
|
|
|
|
|
|
|
|
|
|
|
'Directory_default': '{0}/{1}'.format(map.wwwdir, sitename), |
|
|
'Directory_default': '{0}/{1}'.format(map.wwwdir, sitename), |
|
|
'Directory': { |
|
|
'Directory': { |
|
|
'Options': '-Indexes FollowSymLinks', |
|
|
|
|
|
|
|
|
'Options': '-Indexes +FollowSymLinks', |
|
|
'Order': 'allow,deny', |
|
|
'Order': 'allow,deny', |
|
|
'Allow': 'from all', |
|
|
'Allow': 'from all', |
|
|
|
|
|
'Require': 'all granted', |
|
|
'AllowOverride': 'None', |
|
|
'AllowOverride': 'None', |
|
|
}, |
|
|
}, |
|
|
} %} |
|
|
} %} |
|
|
|
|
|
|
|
|
{% if site.get('DocumentRoot') != False %}DocumentRoot {{ vals.DocumentRoot }}{% endif %} |
|
|
{% if site.get('DocumentRoot') != False %}DocumentRoot {{ vals.DocumentRoot }}{% endif %} |
|
|
{% if site.get('VirtualDocumentRoot') %}VirtualDocumentRoot {{ vals.VirtualDocumentRoot }}{% endif %} |
|
|
{% if site.get('VirtualDocumentRoot') %}VirtualDocumentRoot {{ vals.VirtualDocumentRoot }}{% endif %} |
|
|
|
|
|
|
|
|
{% if site.get('DocumentRoot') != False %} |
|
|
|
|
|
<Directory {{ vals.DocumentRoot }}> |
|
|
|
|
|
{% if apache.require_all %} |
|
|
|
|
|
Require all granted |
|
|
|
|
|
{% endif %} |
|
|
|
|
|
</Directory> |
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
|
|
{% for path, dir in site.get('Directory', {}).items() %} |
|
|
{% for path, dir in site.get('Directory', {}).items() %} |
|
|
{% set dvals = { |
|
|
{% set dvals = { |
|
|
'Options': dir.get('Options', vals.Directory.Options), |
|
|
'Options': dir.get('Options', vals.Directory.Options), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Directory "{{ path }}"> |
|
|
<Directory "{{ path }}"> |
|
|
{% if dir.get('Options') != False %}Options {{ dvals.Options }}{% endif %} |
|
|
{% if dir.get('Options') != False %}Options {{ dvals.Options }}{% endif %} |
|
|
|
|
|
{% if apache.use_require %} |
|
|
|
|
|
{% if dir.get('Require') != False %}Require {{dvals.Require}}{% endif %} |
|
|
|
|
|
{% else %} |
|
|
{% if dir.get('Order') != False %}Order {{ dvals.Order }}{% endif %} |
|
|
{% if dir.get('Order') != False %}Order {{ dvals.Order }}{% endif %} |
|
|
{% if dir.get('Allow') != False %}Allow {{ dvals.Allow }}{% endif %} |
|
|
{% if dir.get('Allow') != False %}Allow {{ dvals.Allow }}{% endif %} |
|
|
|
|
|
{% endif %} |
|
|
{% if dir.get('AllowOverride') != False %}AllowOverride {{ dvals.AllowOverride }}{% endif %} |
|
|
{% if dir.get('AllowOverride') != False %}AllowOverride {{ dvals.AllowOverride }}{% endif %} |
|
|
{% if dir.get('Require') != False %}Require {{dvals.Require}}{% endif %} |
|
|
|
|
|
|
|
|
|
|
|
{% if dir.get('Formula_Append') %} |
|
|
{% if dir.get('Formula_Append') %} |
|
|
{{ dir.Formula_Append|indent(8) }} |
|
|
{{ dir.Formula_Append|indent(8) }} |