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.

init.sls 244B

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