puppet/apache/templates/proxy.conf.erb
2010-11-09 15:57:12 +02:00

12 lines
210 B
Text

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