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

31 行
583B

  1. # nginx
  2. #
  3. # Meta-state to fully install nginx.
  4. {% from 'nginx/map.jinja' import nginx, sls_block with context %}
  5. include:
  6. - nginx.config
  7. - nginx.service
  8. {% if nginx.snippets is defined %}
  9. - nginx.snippets
  10. {% endif %}
  11. - nginx.servers
  12. - nginx.certificates
  13. extend:
  14. nginx_service:
  15. service:
  16. - listen:
  17. - file: nginx_config
  18. - require:
  19. - file: nginx_config
  20. nginx_config:
  21. file:
  22. - require:
  23. {% if nginx.install_from_source %}
  24. - cmd: nginx_install
  25. {% else %}
  26. - pkg: nginx_install
  27. {% endif %}