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

14 行
244B

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