puppet/apache/templates/proxy.conf.erb

12 lines
195 B
Text

<% if @apache_proxy_allow -%>
ProxyRequests On
ProxyVia On
<Proxy *>
Order deny,allow
Deny from all
Allow from <%= @apache_proxy_allow %>
</Proxy>
<% else -%>
ProxyRequests Off
<% end -%>