Browse Source

Fix mod_remoteip for Red Hat family OS (#260)

The source template was missing for RH based systems, only the Debian
file was packaged.

Fix this.
tags/v0.37.4
Andreas Thienemann 5 years ago
parent
commit
0c1423f8f1
2 changed files with 7 additions and 1 deletions
  1. +6
    -0
      apache/files/RedHat/conf.modules.d/remoteip.conf.jinja
  2. +1
    -1
      apache/mod_remoteip.sls

+ 6
- 0
apache/files/RedHat/conf.modules.d/remoteip.conf.jinja View File

@@ -0,0 +1,6 @@
# managed by saltstack

RemoteIPHeader {{ salt['pillar.get']('apache:mod_remoteip:RemoteIPHeader', 'X-Forwarded-For') }}
{%- for trusted_proxy in salt['pillar.get']('apache:mod_remoteip:RemoteIPTrustedProxy', []) %}
RemoteIPTrustedProxy {{ trusted_proxy }}
{%- endfor %}

+ 1
- 1
apache/mod_remoteip.sls View File

@@ -54,7 +54,7 @@ include:
file.managed:
- template: jinja
- source:
- salt://apache/files/{{ salt['grains.get']('os_family') }}/remoteip.conf.jinja
- salt://apache/files/{{ salt['grains.get']('os_family') }}/conf.modules.d/remoteip.conf.jinja
- require:
- pkg: apache
- watch_in:

Loading…
Cancel
Save