dev/provisioning/modules/apache/templates/mod/alias.conf.erb
author ymh <ymh.work@gmail.com>
Sat, 06 Aug 2016 21:27:53 +0700
changeset 260 64caee7ce38d
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
Split document model in document and document results

<IfModule alias_module>
Alias /icons/ "<%= @icons_path %>/"
<Directory "<%= @icons_path %>">
    Options <%= @icons_options %>
    AllowOverride None
<%- if scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%>
    Require all granted
<%- else -%>
     Order allow,deny
     Allow from all
<%- end -%>
</Directory>
</IfModule>