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.

99 lines
3.3KB

  1. # ``apache`` formula configuration:
  2. apache:
  3. server: apache2
  4. service: apache2
  5. vhostdir: /etc/apache2/sites-available
  6. confdir: /etc/apache2/conf.d
  7. confext: .conf
  8. logdir: /var/log/apache2
  9. wwwdir: /srv/apache2
  10. # ``apache.mod_wsgi`` formula additional configuration:
  11. mod_wsgi: mod_wsgi
  12. # ``apache.vhosts`` formula additional configuration:
  13. sites:
  14. example.net:
  15. template_file: salt://apache/vhosts/minimal.tmpl
  16. example.com: # must be unique; used as an ID declaration in Salt.
  17. template_file: salt://apache/vhosts/standard.tmpl # or redirect.tmpl or proxy.tmpl
  18. ####################### DEFAULT VALUES BELOW ############################
  19. # NOTE: the values below are simply default settings that *can* be
  20. # overridden and are not required in order to use this formula to create
  21. # vhost entries.
  22. #
  23. # Do not copy the values below into your Pillar unless you intend to
  24. # modify these vaules.
  25. ####################### DEFAULT VALUES BELOW ############################
  26. template_engine: jinja
  27. interface: '*'
  28. port: '80'
  29. ServerName: example.com # uses the unique ID above unless specified
  30. ServerAlias: www.example.com
  31. ServerAdmin: webmaster@example.com
  32. LogLevel: warn
  33. ErrorLog: /path/to/logs/example.com-error.log # E.g.: /var/log/apache2/example.com-error.log
  34. CustomLog: /path/to/logs/example.com-access.log # E.g.: /var/log/apache2/example.com-access.log
  35. DocumentRoot: /path/to/www/dir/example.com # E.g., /var/www/example.com
  36. SSLCertificateFile: /etc/ssl/mycert.pem # if ssl is desired
  37. SSLCertificateKeyFile: /etc/ssl/mycert.pem.key # if key for cert is needed or in an extra file
  38. SSLCertificateChainFile: /etc/ssl/mycert.chain.pem # if you require a chain of server certificates file
  39. Directory:
  40. # "default" is a special case; Adds ``/path/to/www/dir/example.com``
  41. # E.g.: /var/www/example.com
  42. default:
  43. Options: -Indexes FollowSymLinks
  44. Order: allow,deny # For Apache < 2.4
  45. Allow: from all # For apache < 2.4
  46. Require: all granted # For apache > 2.4.
  47. AllowOverride: None
  48. Formula_Append: |
  49. Additional config as a
  50. multi-line string here
  51. # if template is 'redirect.tmpl'
  52. # RedirectSource: '/'
  53. # RedirectTarget: 'http://www.example.net'
  54. # if template is 'proxy.tmpl'
  55. # ProxyPreserveHost: 'On'
  56. # ProxyRoute:
  57. # my sample route:
  58. # ProxyPassSource: '/'
  59. # ProxyPassTarget: 'http://www.example.net'
  60. # ProxyPassReverseSource: '/'
  61. # ProxyPassReverseTarget: 'http://www.example.net'
  62. Formula_Append: |
  63. Additional config as a
  64. multi-line string here
  65. # ``apache.debian_full`` formula additional configuration:
  66. register-site:
  67. # any name as an array index, and you can duplicate this section
  68. UNIQUE_VALUE_HERE:
  69. name: 'my name'
  70. path: 'salt://path/to/sites-available/conf/file'
  71. state: 'enabled'
  72. # Optional - use managed file as Jinja Template
  73. #template: true
  74. #defaults:
  75. # custom_var: "default value"
  76. modules:
  77. enabled: # List modules to enable
  78. - ldap
  79. - ssl
  80. disabled: # List modules to disable
  81. - rewrite