fuel-library/deployment/puppet/apache/templates/vhost/_requestheader.erb
Aleksandr Didenko 0b60cdd6a1 Add new module 'apache'
'apache' module is needed by 'horizon' 4.1.0

173967ab8dd21a93d6f2b47ff2641d0092f729b1 v 1.2.0

Fuel-CI: disable
Partial blueprint: merge-openstack-puppet-modules

Change-Id: I0f5ff2fafe058c0263c2ace4bc0ce8f7828d3be0
2014-12-30 11:31:37 +02:00

11 lines
347 B
Plaintext

<% if @request_headers and ! @request_headers.empty? -%>
## Request header rules
## as per http://httpd.apache.org/docs/2.2/mod/mod_headers.html#requestheader
<%- Array(@request_headers).each do |request_statement| -%>
<%- if request_statement != '' -%>
RequestHeader <%= request_statement %>
<%- end -%>
<%- end -%>
<% end -%>