26
|
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
|
|
42 server.modules = (
|
|
43 "mod_access",
|
|
44 "mod_accesslog",
|
|
45 "mod_cgi",
|
|
46 # "mod_alias",
|
|
47 # "mod_auth",
|
|
48 # "mod_evasive",
|
36
|
49 "mod_redirect",
|
26
|
50 # "mod_rewrite",
|
30
|
51 "mod_setenv",
|
26
|
52 # "mod_usertrack",
|
|
53 )
|
|
54
|
|
55 ##
|
|
56 #######################################################################
|
|
57
|
|
58 #######################################################################
|
|
59 ##
|
|
60 ## Config for various Modules
|
|
61 ##
|
|
62
|
|
63 ##
|
|
64 ## mod_ssi
|
|
65 ##
|
|
66 #include "conf.d/ssi.conf"
|
|
67
|
|
68 ##
|
|
69 ## mod_status
|
|
70 ##
|
|
71 #include "conf.d/status.conf"
|
|
72
|
|
73 ##
|
|
74 ## mod_webdav
|
|
75 ##
|
|
76 #include "conf.d/webdav.conf"
|
|
77
|
|
78 ##
|
|
79 ## mod_compress
|
|
80 ##
|
|
81 #include "conf.d/compress.conf"
|
|
82
|
|
83 ##
|
|
84 ## mod_userdir
|
|
85 ##
|
|
86 #include "conf.d/userdir.conf"
|
|
87
|
|
88 ##
|
|
89 ## mod_magnet
|
|
90 ##
|
|
91 #include "conf.d/magnet.conf"
|
|
92
|
|
93 ##
|
|
94 ## mod_cml
|
|
95 ##
|
|
96 #include "conf.d/cml.conf"
|
|