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.

README.rst 4.9KB

11 years ago
11 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. ======
  2. apache
  3. ======
  4. Formulas to set up and configure the Apache HTTP server.
  5. .. note::
  6. See the full `Salt Formulas installation and usage instructions
  7. <http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html>`_.
  8. Available states
  9. ================
  10. .. contents::
  11. :local:
  12. ``apache``
  13. ----------
  14. Installs the Apache package and starts the service.
  15. ``apache.config``
  16. -----------------
  17. Configures apache based on os_family
  18. ``apache.mod_mpm``
  19. ------------------
  20. Configures the apache mpm modules on Debian ``mpm_prefork``, ``mpm_worker`` or ``mpm_event`` (Debian Only)
  21. ``apache.modules``
  22. ------------------
  23. Enables and disables Apache modules.
  24. ``apache.mod_rewrite``
  25. ----------------------
  26. Enabled the Apache module mod_rewrite (Debian and FreeBSD only)
  27. ``apache.mod_proxy``
  28. -------------------
  29. Enables the Apache module mod_proxy. (Debian and FreeBSD only)
  30. ``apache.mod_proxy_http``
  31. -------------------------
  32. Enables the Apache module mod_proxy_http and requires the Apache module mod_proxy to be enabled. (Debian Only)
  33. ``apache.mod_wsgi``
  34. -------------------
  35. Installs the mod_wsgi package and enables the Apache module.
  36. ``apache.mod_actions``
  37. ----------------------
  38. Enables the Apache module mod_actions. (Debian Only)
  39. ``apache.mod_headers``
  40. ----------------------
  41. Enables the Apache module mod_headers. (Debian Only)
  42. ``apache.mod_pagespeed``
  43. ------------------------
  44. Installs and Enables the mod_pagespeed module. (Debian and RedHat Only)
  45. ``apache.mod_perl2``
  46. -------------------
  47. Installs and enables the mod_perl2 module (Debian and FreeBSD only)
  48. ``apache.mod_php5``
  49. -------------------
  50. Installs and enables the mod_php5 module
  51. ``apache.mod_cgi``
  52. ---------------------
  53. Enables mod_cgi. (FreeBSD only)
  54. ``apache.mod_fcgid``
  55. --------------------
  56. Installs and enables the mod_fcgid module
  57. ``apache.mod_dav_svn``
  58. --------------------
  59. Installs and enables the mod_dav_svn module (Debian only)
  60. ``apache.mod_security``
  61. ----------------------
  62. Installs an enables the `Apache mod_security2 WAF`<http://modsecurity.org/>`_
  63. using data from Pillar. (Debian and RedHat Only)
  64. Allows you to install the basic Core Rules (CRS) and some basic configuration for mod_security2
  65. ``apache.mod_security.rules``
  66. -----------------------------
  67. This state can create symlinks based on basic Core Rules package. (Debian only)
  68. Or it can distribute a mod_security rule file and place it /etc/modsecurity/
  69. ``mod_socache_shmcb``
  70. ---------------------
  71. Enables mod_socache_shmcb. (FreeBSD only)
  72. ``apache.mod_ssl``
  73. ----------------------
  74. Installs and enables the mod_ssl module (Debian, RedHat and FreeBSD only)
  75. ``apache.mod_suexec``
  76. ---------------------
  77. Enables mod_suexec. (FreeBSD only)
  78. ``apache.mod_vhost_alias``
  79. ----------------------
  80. Enables the Apache module vhost_alias (Debian Only)
  81. ``apache.mod_remoteip``
  82. ----------------------
  83. Enables and configures the Apache module mod_remoteip using data from Pillar. (Debian Only)
  84. ``apache.own_default_vhost``
  85. --------------------------
  86. Replace default vhost with own version. By default, it's 503 code. (Debian Only)
  87. ``apache.no_default_vhost``
  88. --------------------------
  89. Remove the default vhost. (Debian Only)
  90. ``apache.vhosts.standard``
  91. --------------------------
  92. Configures Apache name-based virtual hosts and creates virtual host directories using data from Pillar.
  93. Example Pillar:
  94. .. code:: yaml
  95. apache:
  96. sites:
  97. example.com: # must be unique; used as an ID declaration in Salt; also passed to the template context as {{ id }}
  98. template_file: salt://apache/vhosts/standard.tmpl
  99. When using the provided templates, one can use a space separated list
  100. of interfaces to bind to. For example, to bind both IPv4 and IPv6:
  101. .. code:: yaml
  102. apache:
  103. sites:
  104. example.com:
  105. interface: '1.2.3.4 [2001:abc:def:100::3]'
  106. ``apache.manage_security``
  107. --------------------------
  108. Configures Apache's security.conf options by reassinging them using data from Pillar.
  109. ``apache.debian_full``
  110. ----------------------
  111. Installs and configures Apache on Debian and Ubuntu systems.
  112. These states are ordered using the ``order`` declaration. Different stages
  113. are divided into the following number ranges:
  114. 1) apache will use 1-500 for ordering
  115. 2) apache will reserve 1 -100 as unused
  116. 3) apache will reserve 101-150 for pre pkg install
  117. 4) apache will reserve 151-200 for pkg install
  118. 5) apache will reserve 201-250 for pkg configure
  119. 6) apache will reserve 251-300 for downloads, git stuff, load data
  120. 7) apache will reserve 301-400 for unknown purposes
  121. 8) apache will reserve 401-450 for service restart-reloads
  122. 9) apache WILL reserve 451-460 for service.running
  123. 10) apache will reserve 461-500 for cmd requiring operational services
  124. Example Pillar:
  125. .. code:: yaml
  126. apache:
  127. register-site:
  128. # any name as an array index, and you can duplicate this section
  129. {{UNIQUE}}:
  130. name: 'my name'
  131. path: 'salt://path/to/sites-available/conf/file'
  132. state: 'enabled'