Merge pull request #31 from tfolio/users-optional

Optionally include nginx.users via a pillar value
This commit is contained in:
Seth House 2014-06-24 13:30:38 -06:00
commit 65b1594914
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
include: include:
- nginx.common - nginx.common
{% if pillar.get('nginx', {}).get('user_auth_enabled', true) %}
- nginx.users - nginx.users
{% endif %}
{% if pillar.get('nginx', {}).get('install_from_source') %} {% if pillar.get('nginx', {}).get('install_from_source') %}
- nginx.source - nginx.source
{% else %} {% else %}

View File

@ -1,6 +1,7 @@
nginx: nginx:
install_from_source: True install_from_source: True
use_upstart: True use_upstart: True
user_auth_enabled: True
with_luajit: False with_luajit: False
with_openresty: True with_openresty: True
modules: modules: