Saltstack Official Nginx Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

init.sls 326B

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