Saltstack Official Nginx Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
238B

  1. include:
  2. - nginx.common
  3. {% if pillar.get('nginx', {}).get('user_auth_enabled', true) %}
  4. - nginx.users
  5. {% endif %}
  6. {% if pillar.get('nginx', {}).get('install_from_source') %}
  7. - nginx.source
  8. {% else %}
  9. - nginx.package
  10. {% endif -%}