Bläddra i källkod

remove nginx -V check; add pillar example

susefix
Kent Shultz 10 år sedan
förälder
incheckning
c2b896ea52
2 ändrade filer med 5 tillägg och 1 borttagningar
  1. +1
    -1
      nginx/templates/config.jinja
  2. +4
    -0
      pillar.example

+ 1
- 1
nginx/templates/config.jinja Visa fil

@@ -13,7 +13,7 @@ events {
}

http {
{% if 'set_real_ips' in nginx and salt['cmd.retcode']('nginx -V 2>&1 | grep http_realip_module') == 0 -%}
{% if 'set_real_ips' in nginx -%}
{% for ip in nginx.get('set_real_ips', {}).get('ips', []) -%}
set_real_ip_from {{ ip }};
{% endfor -%}

+ 4
- 0
pillar.example Visa fil

@@ -3,6 +3,10 @@ nginx:
use_upstart: True
with_luajit: False
with_openresty: True
set_real_ips: # NOTE: to use this, nginx must have http_realip module enabled
ips:
- 10.10.10.0/24
real_ip_header: X-Forwarded-For
modules:
headers-more:
source: http://github.com/agentzh/headers-more-nginx-module/tarball/v0.21

Laddar…
Avbryt
Spara