Sha256: 8009f1d9bbe055b19c4d462aef3e7c68ed23ea504e769fc0f519c9ba5b4a040a

Contents?: true

Size: 746 Bytes

Versions: 11

Compression:

Stored size: 746 Bytes

Contents

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
<IfModule mod_proxy.c>
  # Do not enable proxying with ProxyRequests until you have secured your
  # server.  Open proxy servers are dangerous both to your network and to the
  # Internet at large.
  ProxyRequests <%= @proxy_requests %>

  <% if @proxy_requests != 'Off' or ( @allow_from and ! @allow_from.empty? ) -%>
  <Proxy *>
    Order deny,allow
    Deny from all
    Allow from <%= Array(@allow_from).join(" ") %>
  </Proxy>
  <% end -%>

  # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  # Set to one of: Off | On | Full | Block
  ProxyVia On
</IfModule>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.6.0 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.5.2 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.5.1 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.5.0 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.4.1 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.4.0 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.3.3 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.3.2 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.3.1 modules/apache/templates/mod/proxy.conf.erb
freighthop-0.3.0 modules/apache/templates/mod/proxy.conf.erb