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