nginx-formula/nginx/init.sls

12 lines
238 B
Plaintext
Raw Normal View History

include:
- nginx.common
{% if pillar.get('nginx', {}).get('user_auth_enabled', true) %}
- nginx.users
{% endif %}
2013-08-21 21:17:15 +02:00
{% if pillar.get('nginx', {}).get('install_from_source') %}
- nginx.source
{% else %}
- nginx.package
2013-08-21 21:17:15 +02:00
{% endif -%}