Saltstack Official Nginx Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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