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.

56 line
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. envvarsfile: /etc/apache2/envvars
  20. vhostdir: /etc/apache2/sites-available
  21. confdir: /etc/apache2/conf.d
  22. davlockdbdir: null
  23. logdir: /var/log/apache2
  24. wwwdir: /srv/apache2
  25. document_root_user: null # Do not enforce group
  26. document_root_group: null # Do not enforce group
  27. manage_service_states: true
  28. service_state: running
  29. service_enable: true
  30. flags: {}
  31. global: {}
  32. modules: {}
  33. mod_remoteip: {}
  34. mod_security:
  35. crs_install: false
  36. manage_config: false # use software defaults
  37. mod_ssl:
  38. manage_tls_defaults: false # use software defaults
  39. # Just here for testing
  40. added_in_defaults: defaults_value
  41. winner: defaults
  42. retry_option:
  43. # https://docs.saltstack.com/en/latest/ref/states/requisites.html#retrying-states
  44. attempts: 2
  45. until: true
  46. interval: 10
  47. splay: 10