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

15 行
326B

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