view modules/apache/templates/mod/expires.conf.erb @ 275:d9352a684e62

Mass update of modules to remove deprecation warnings
author IBBoard <dev@ibboard.co.uk>
date Sun, 26 Jan 2020 11:36:07 +0000
parents 675c1cc61eaf
children
line wrap: on
line source

ExpiresActive <%= scope.call_function('apache::bool2httpd', [@expires_active]) %>
<%- if ! @expires_default.nil? and ! @expires_default.empty? -%>
ExpiresDefault "<%= @expires_default %>"
<%- end -%>
<%- if ! @expires_by_type.nil? and ! @expires_by_type.empty? -%>
<%-   [@expires_by_type].flatten.each do |line| -%>
<%-     line.map do |type, seconds| -%>
ExpiresByType <%= type %> "<%= seconds -%>"
<%-     end -%>
<%-   end -%>
<%- end -%>