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