Saltstack Official Apache Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.1KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. apache:
  5. lookup: {}
  6. pkg:
  7. name: apache2
  8. mod_ssl: mod_ssl
  9. mod_wsgi: mod_wsgi
  10. deps: []
  11. rootuser: root
  12. rootgroup: root
  13. template_engine: jinja
  14. config: '/etc/apache'
  15. service:
  16. name: apache
  17. user: www-data
  18. group: www-data
  19. vhostdir: /etc/apache2/sites-available
  20. confdir: /etc/apache2/conf.d
  21. davlockdbdir: null
  22. logdir: /var/log/apache2
  23. wwwdir: /srv/apache2
  24. document_root_user: null # Do not enforce group
  25. document_root_group: null # Do not enforce group
  26. manage_service_states: true
  27. service_state: running
  28. service_enable: true
  29. flags: {}
  30. global: {}
  31. modules: {}
  32. mod_remoteip: {}
  33. mod_security:
  34. crs_install: false
  35. manage_config: false # use software defaults
  36. mod_ssl:
  37. manage_tls_defaults: false # use software defaults
  38. # Just here for testing
  39. added_in_defaults: defaults_value
  40. winner: defaults
  41. retry_option:
  42. # https://docs.saltstack.com/en/latest/ref/states/requisites.html#retrying-states
  43. attempts: 2
  44. until: true
  45. interval: 10
  46. splay: 10