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 42server.modules = ( 43 "mod_access", 44# "mod_alias", 45# "mod_auth", 46# "mod_evasive", 47# "mod_redirect", 48# "mod_rewrite", 49# "mod_setenv", 50# "mod_usertrack", 51) 52 53## 54####################################################################### 55 56####################################################################### 57## 58## Config for various Modules 59## 60 61## 62## mod_ssi 63## 64#include "conf.d/ssi.conf" 65 66## 67## mod_status 68## 69#include "conf.d/status.conf" 70 71## 72## mod_webdav 73## 74#include "conf.d/webdav.conf" 75 76## 77## mod_compress 78## 79#include "conf.d/compress.conf" 80 81## 82## mod_userdir 83## 84#include "conf.d/userdir.conf" 85 86## 87## mod_magnet 88## 89#include "conf.d/magnet.conf" 90 91## 92## mod_cml 93## 94#include "conf.d/cml.conf" 95 96## 97## mod_rrdtool 98## 99#include "conf.d/rrdtool.conf" 100 101## 102## mod_proxy 103## 104#include "conf.d/proxy.conf" 105 106## 107## mod_expire 108## 109#include "conf.d/expire.conf" 110 111## 112## mod_secdownload 113## 114#include "conf.d/secdownload.conf" 115 116## 117####################################################################### 118 119####################################################################### 120## 121## CGI modules 122## 123 124## 125## SCGI (mod_scgi) 126## 127#include "conf.d/scgi.conf" 128 129## 130## FastCGI (mod_fastcgi) 131## 132#include "conf.d/fastcgi.conf" 133 134## 135## plain old CGI (mod_cgi) 136## 137#include "conf.d/cgi.conf" 138 139## 140####################################################################### 141 142####################################################################### 143## 144## VHost Modules 145## 146## Only load ONE of them! 147## ======================== 148## 149 150## 151## You can use conditionals for vhosts aswell. 152## 153## see http://www.lighttpd.net/documentation/configuration.html 154## 155 156## 157## mod_evhost 158## 159#include "conf.d/evhost.conf" 160 161## 162## mod_simple_vhost 163## 164#include "conf.d/simple_vhost.conf" 165 166## 167## mod_mysql_vhost 168## 169#include "conf.d/mysql_vhost.conf" 170 171## 172####################################################################### 173