dev/provisioning/modules/apache/templates/mod/remoteip.conf.erb
author ymh <ymh.work@gmail.com>
Sat, 28 May 2016 11:49:38 +0200
changeset 162 a6cf5a06f02d
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
add Transcript converters libraries + test

# Declare the header field which should be parsed for useragent IP addresses
RemoteIPHeader <%= @header %>

<%- if @proxy_ips -%>
# Declare client intranet IP addresses trusted to present
# the RemoteIPHeader value
<%-   [@proxy_ips].flatten.each do |proxy| -%>
RemoteIPInternalProxy <%= proxy %>
<%-   end -%>
<%- end -%>

<%- if @proxies_header -%>
# Declare the header field which will record all intermediate IP addresses
RemoteIPProxiesHeader <%= @proxies_header %>
<%- end -%>

<%- if @trusted_proxy_ips -%>
# Declare client intranet IP addresses trusted to present
# the RemoteIPHeader value
  <%- [@trusted_proxy_ips].flatten.each do |proxy| -%>
RemoteIPTrustedProxy <%= proxy %>
  <%- end -%>
<%- end -%>