Procházet zdrojové kódy

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 před 5 roky
rodič
revize
0c1423f8f1
2 změnil soubory, kde provedl 7 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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:

Načítá se…
Zrušit
Uložit