Saltstack Official Nginx Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

init.sls 238B

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