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.
This commit is contained in:
parent
58d2a33898
commit
0c1423f8f1
6
apache/files/RedHat/conf.modules.d/remoteip.conf.jinja
Normal file
6
apache/files/RedHat/conf.modules.d/remoteip.conf.jinja
Normal 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 %}
|
@ -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…
Reference in New Issue
Block a user