Saltstack Official Nginx Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 -%}