Saltstack Official Apache Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

139 行
3.3KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. Debian:
  5. server: apache2
  6. service: apache2
  7. user: www-data
  8. group: www-data
  9. configfile: /etc/apache2/apache2.conf
  10. portsfile: /etc/apache2/ports.conf
  11. mod_wsgi: libapache2-mod-wsgi
  12. mod_php5: libapache2-mod-php5
  13. mod_perl2: libapache2-mod-perl2
  14. mod_fcgid: libapache2-mod-fcgid
  15. # yamllint disable-line rule:line-length
  16. mod_pagespeed_source: https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_amd64.deb
  17. mod_xsendfile: libapache2-mod-xsendfile
  18. mod_fastcgi: libapache2-mod-fastcgi
  19. mod_geoip: libapache2-mod-geoip
  20. mod_geoip_database: geoip-database
  21. vhostdir: /etc/apache2/sites-available
  22. confdir: /etc/apache2/conf-available
  23. confext: .conf
  24. default_site: default
  25. default_site_ssl: default-ssl
  26. logdir: /var/log/apache2
  27. logrotatedir: /etc/logrotate.d/apache2
  28. wwwdir: /srv
  29. RedHat:
  30. server: httpd
  31. service: httpd
  32. user: apache
  33. group: apache
  34. configfile: /etc/httpd/conf/httpd.conf
  35. mod_ssl_pkg: mod_ssl
  36. mod_wsgi: mod_wsgi
  37. conf_mod_wsgi: /etc/httpd/conf.d/wsgi.conf
  38. mod_php5: php
  39. mod_fcgid: mod_fcgid
  40. # yamllint disable-line rule:line-length
  41. mod_pagespeed_source: https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_x86_64.rpm
  42. mod_geoip: mod_geoip
  43. mod_geoip_database: GeoIP
  44. vhostdir: /etc/httpd/vhosts.d
  45. confdir: /etc/httpd/conf.d
  46. confext: .conf
  47. default_site: default
  48. default_site_ssl: default-ssl
  49. logdir: /var/log/httpd
  50. logrotatedir: /etc/logrotate.d/httpd
  51. wwwdir: /var/www
  52. default_charset: UTF-8
  53. use_require: false
  54. moddir: /etc/httpd/conf.modules.d
  55. Gentoo:
  56. server: www-servers/apache
  57. service: apache2
  58. user: apache
  59. group: apache
  60. configfile: /etc/apache2/httpd.conf
  61. mod_wsgi: www-apache/mod_wsgi
  62. mod_fcgid: www-apache/mod_fcgid
  63. vhostdir: /etc/apache2/vhosts.d
  64. confdir: /etc/conf.d/apache2
  65. confext: .conf
  66. default_site: default
  67. default_site_ssl: default-ssl
  68. logdir: /var/log/apache2
  69. logrotatedir: /etc/logrotate.d/apache2
  70. wwwdir: /var/www
  71. Suse:
  72. server: apache2
  73. service: apache2
  74. user: wwwrun
  75. group: wwwrun
  76. configfile: /etc/apache2/httpd.conf
  77. mod_wsgi: apache2-mod_wsgi
  78. mod_php5: apache2-mod_php5
  79. mod_fcgid: apache2-mod_fcgid
  80. vhostdir: /etc/apache2/vhosts.d
  81. confdir: /etc/apache2/conf.d
  82. confext: .conf
  83. default_site: vhost.template
  84. default_site_ssl: vhost-ssl.template
  85. logdir: /var/log/apache2
  86. wwwdir: /srv/www
  87. FreeBSD:
  88. server: apache24
  89. service: apache24
  90. user: www
  91. group: www
  92. configfile: /usr/local/etc/apache24/httpd.conf
  93. portsfile: /usr/local/etc/apache24/ports.conf
  94. mod_php5: mod_php56
  95. mod_perl2: ap24-mod_perl2
  96. mod_wsgi: ap24-mod_wsgi3
  97. vhostdir: /usr/local/etc/apache24/Includes
  98. confdir: /usr/local/etc/apache24/extra
  99. modulesdir: /usr/local/etc/apache24/modules.d
  100. global_document_root: /usr/local/www/apache24/data
  101. confext: ''
  102. default_site: default
  103. default_site_ssl: default-ssl
  104. logdir: /var/log/
  105. wwwdir: /usr/local/www/apache24/
  106. Arch:
  107. server: apache
  108. service: httpd
  109. user: http
  110. group: http
  111. configfile: /etc/httpd/conf/httpd.conf
  112. mod_wsgi: mod_wsgi
  113. vhostdir: /etc/httpd/conf/vhosts
  114. confdir: /etc/httpd/conf/extra
  115. modulesdir: /usr/lib/httpd/modules
  116. confext: .conf
  117. logdir: /var/log/httpd
  118. wwwdir: /srv/http
  119. default_site: default
  120. default_site_ssl: default-ssl