modules.conf 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #######################################################################
  2. ##
  3. ## Modules to load
  4. ## -----------------
  5. ##
  6. ## at least mod_access and mod_accesslog should be loaded
  7. ## all other module should only be loaded if really neccesary
  8. ##
  9. ## - saves some time
  10. ## - saves memory
  11. ##
  12. ## the default module set contains:
  13. ##
  14. ## "mod_indexfile", "mod_dirlisting", "mod_staticfile"
  15. ##
  16. ## you dont have to include those modules in your list
  17. ##
  18. ## Modules, which are pulled in via conf.d/*.conf
  19. ##
  20. ## NOTE: the order of modules is important.
  21. ##
  22. ## - mod_accesslog -> conf.d/access_log.conf
  23. ## - mod_compress -> conf.d/compress.conf
  24. ## - mod_status -> conf.d/status.conf
  25. ## - mod_webdav -> conf.d/webdav.conf
  26. ## - mod_cml -> conf.d/cml.conf
  27. ## - mod_evhost -> conf.d/evhost.conf
  28. ## - mod_simple_vhost -> conf.d/simple_vhost.conf
  29. ## - mod_mysql_vhost -> conf.d/mysql_vhost.conf
  30. ## - mod_trigger_b4_dl -> conf.d/trigger_b4_dl.conf
  31. ## - mod_userdir -> conf.d/userdir.conf
  32. ## - mod_rrdtool -> conf.d/rrdtool.conf
  33. ## - mod_ssi -> conf.d/ssi.conf
  34. ## - mod_cgi -> conf.d/cgi.conf
  35. ## - mod_scgi -> conf.d/scgi.conf
  36. ## - mod_fastcgi -> conf.d/fastcgi.conf
  37. ## - mod_proxy -> conf.d/proxy.conf
  38. ## - mod_secdownload -> conf.d/secdownload.conf
  39. ## - mod_expire -> conf.d/expire.conf
  40. ##
  41. server.modules = (
  42. # "mod_access",
  43. # "mod_alias",
  44. # "mod_auth",
  45. # "mod_evasive",
  46. # "mod_redirect",
  47. # "mod_rewrite",
  48. # "mod_setenv",
  49. # "mod_usertrack",
  50. )
  51. ##
  52. #######################################################################
  53. #######################################################################
  54. ##
  55. ## Config for various Modules
  56. ##
  57. ##
  58. ## mod_ssi
  59. ##
  60. #include "conf.d/ssi.conf"
  61. ##
  62. ## mod_status
  63. ##
  64. #include "conf.d/status.conf"
  65. ##
  66. ## mod_webdav
  67. ##
  68. #include "conf.d/webdav.conf"
  69. ##
  70. ## mod_compress
  71. ##
  72. #include "conf.d/compress.conf"
  73. ##
  74. ## mod_userdir
  75. ##
  76. #include "conf.d/userdir.conf"
  77. ##
  78. ## mod_magnet
  79. ##
  80. #include "conf.d/magnet.conf"
  81. ##
  82. ## mod_cml
  83. ##
  84. #include "conf.d/cml.conf"
  85. ##
  86. ## mod_rrdtool
  87. ##
  88. #include "conf.d/rrdtool.conf"
  89. ##
  90. ## mod_proxy
  91. ##
  92. #include "conf.d/proxy.conf"
  93. ##
  94. ## mod_expire
  95. ##
  96. #include "conf.d/expire.conf"
  97. ##
  98. ## mod_secdownload
  99. ##
  100. #include "conf.d/secdownload.conf"
  101. ##
  102. #######################################################################
  103. #######################################################################
  104. ##
  105. ## CGI modules
  106. ##
  107. ##
  108. ## SCGI (mod_scgi)
  109. ##
  110. #include "conf.d/scgi.conf"
  111. ##
  112. ## FastCGI (mod_fastcgi)
  113. ##
  114. include "conf.d/fastcgi.conf"
  115. ##
  116. ## plain old CGI (mod_cgi)
  117. ##
  118. #include "conf.d/cgi.conf"
  119. ##
  120. #######################################################################
  121. #######################################################################
  122. ##
  123. ## VHost Modules
  124. ##
  125. ## Only load ONE of them!
  126. ## ========================
  127. ##
  128. ##
  129. ## You can use conditionals for vhosts aswell.
  130. ##
  131. ## see http://www.lighttpd.net/documentation/configuration.html
  132. ##
  133. ##
  134. ## mod_evhost
  135. ##
  136. #include "conf.d/evhost.conf"
  137. ##
  138. ## mod_simple_vhost
  139. ##
  140. #include "conf.d/simple_vhost.conf"
  141. ##
  142. ## mod_mysql_vhost
  143. ##
  144. #include "conf.d/mysql_vhost.conf"
  145. ##
  146. #######################################################################