]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/apache/templates/mod/alias.conf.erb
add Openstack modules to 3rdparty
[dsa-puppet.git] / 3rdparty / modules / apache / templates / mod / alias.conf.erb
1 <IfModule alias_module>
2 Alias /icons/ "<%= @icons_path %>/"
3 <Directory "<%= @icons_path %>">
4     Options <%= @icons_options %>
5     AllowOverride None
6 <%- if scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%>
7     Require all granted
8 <%- else -%>
9      Order allow,deny
10      Allow from all
11 <%- end -%>
12 </Directory>
13 </IfModule>