dev/provisioning/modules/apache/templates/mod/geoip.conf.erb
author ymh <ymh.work@gmail.com>
Tue, 20 Mar 2018 15:02:40 +0100
changeset 573 25f3d28f51b2
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
Added tag 0.0.25 for changeset 190ae1dee68d

GeoIPEnable <%= scope.function_bool2httpd([@enable]) %>

<%- if @db_file and ! [ false, 'false', '' ].include?(@db_file) -%>
    <%- if @db_file.kind_of?(Array) -%>
      <%- Array(@db_file).each do |file| -%>
GeoIPDBFile <%= file %> <%= @flag %>
      <%- end -%>
    <%- else -%>
GeoIPDBFile <%= @db_file %> <%= @flag %>
    <%- end -%>
<%- end -%>
GeoIPOutput <%= @output %>
<% if ! @enable_utf8.nil? -%>
GeoIPEnableUTF8 <%= scope.function_bool2httpd([@enable_utf8]) %>
<% end -%>
<% if ! @scan_proxy_headers.nil? -%>
GeoIPScanProxyHeaders <%= scope.function_bool2httpd([@scan_proxy_headers]) %>
<% end -%>
<% if ! @scan_proxy_header_field.nil? -%>
GeoIPScanProxyHeaderField <%= @scan_proxy_header_field %>
<% end -%>
<% if ! @use_last_xforwarededfor_ip.nil? -%>
GeoIPUseLastXForwardedForIP <%= scope.function_bool2httpd([@use_last_xforwarededfor_ip]) %>
<% end -%>