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.

пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 10 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 only)
  27. ``apache.mod_proxy``
  28. -------------------
  29. Enables the Apache module mod_proxy. (Debian 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 Only)
  45. ``apache.mod_php5``
  46. -------------------
  47. Installs and enables the mod_php5 module
  48. ``apache.mod_fcgid``
  49. --------------------
  50. Installs and enables the mod_fcgid module
  51. ``apache.mod_vhost_alias``
  52. ----------------------
  53. Enables the Apache module vhost_alias (Debian Only)
  54. ``apache.vhosts.standard``
  55. --------------------------
  56. Configures Apache name-based virtual hosts and creates virtual host directories using data from Pillar.
  57. Example Pillar:
  58. .. code:: yaml
  59. apache:
  60. sites:
  61. example.com: # must be unique; used as an ID declaration in Salt; also passed to the template context as {{ id }}
  62. template_file: salt://apache/vhosts/standard.tmpl
  63. ``apache.debian_full``
  64. ----------------------
  65. Installs and configures Apache on Debian and Ubuntu systems.
  66. These states are ordered using the ``order`` declaration. Different stages
  67. are divided into the following number ranges:
  68. 1) apache will use 1-500 for ordering
  69. 2) apache will reserve 1 -100 as unused
  70. 3) apache will reserve 101-150 for pre pkg install
  71. 4) apache will reserve 151-200 for pkg install
  72. 5) apache will reserve 201-250 for pkg configure
  73. 6) apache will reserve 251-300 for downloads, git stuff, load data
  74. 7) apache will reserve 301-400 for unknown purposes
  75. 8) apache will reserve 401-450 for service restart-reloads
  76. 9) apache WILL reserve 451-460 for service.running
  77. 10) apache will reserve 461-500 for cmd requiring operational services
  78. Example Pillar:
  79. .. code:: yaml
  80. apache:
  81. register-site:
  82. # any name as an array index, and you can duplicate this section
  83. {{UNIQUE}}:
  84. name: 'my name'
  85. path: 'salt://path/to/sites-available/conf/file'
  86. state: 'enabled'