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