]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.conf
- add more modules being present
[packages/lighttpd.git] / lighttpd.conf
1 # lighttpd configuration file
2 #
3 # use a it as base for lighttpd 1.0.0 and above
4 #
5 # $Id$
6
7 ############ Options you really have to take care of ####################
8
9 ## modules to load
10 # at least mod_access and mod_accesslog should be loaded
11 # all other module should only be loaded if really neccesary
12 # - saves some time
13 # - saves memory
14
15 server.modules = (
16 #       "mod_rewrite",
17 #       "mod_redirect",
18         "mod_access",
19 #       "mod_auth",
20 #       "mod_status",
21 #       "mod_fastcgi",
22 #       "mod_simple_vhost",
23 #       "mod_evhost",
24 #       "mod_cgi",
25 #       "mod_compress",
26 #       "mod_userdir",
27 #       "mod_alias",
28 #       "mod_ssi",
29 #       "mod_usertrack",
30 #       "mod_rrdtool",
31 #       "mod_expire",
32 #       "mod_localizer",
33 #       "mod_proxy",
34 #       "mod_secdownload",
35         "mod_accesslog",
36 )
37
38 ## a static document-root, for virtual-hosting take look at the
39 ## server.virtual-* options
40 server.document-root = "/home/services/lighttpd/html/"
41
42 ## where to send error-messages to
43 server.errorlog = "/var/log/lighttpd/lighttpd.log"
44
45 # files to check for if .../ is requested
46 server.indexfiles = (
47         "index.php",
48         "index.html",
49         "index.htm",
50         "default.htm",
51 )
52
53 # mimetype mapping
54 mimetype.assign = (
55         ".pdf"          =>      "application/pdf",
56         ".sig"          =>      "application/pgp-signature",
57         ".spl"          =>      "application/futuresplash",
58         ".class"        =>      "application/octet-stream",
59         ".ps"           =>      "application/postscript",
60         ".torrent"      =>      "application/x-bittorrent",
61         ".dvi"          =>      "application/x-dvi",
62         ".gz"           =>      "application/x-gzip",
63         ".pac"          =>      "application/x-ns-proxy-autoconfig",
64         ".swf"          =>      "application/x-shockwave-flash",
65         ".tar.gz"       =>      "application/x-tgz",
66         ".tgz"          =>      "application/x-tgz",
67         ".tar"          =>      "application/x-tar",
68         ".zip"          =>      "application/zip",
69         ".mp3"          =>      "audio/mpeg",
70         ".m3u"          =>      "audio/x-mpegurl",
71         ".wma"          =>      "audio/x-ms-wma",
72         ".wax"          =>      "audio/x-ms-wax",
73         ".ogg"          =>      "audio/x-wav",
74         ".wav"          =>      "audio/x-wav",
75         ".gif"          =>      "image/gif",
76         ".jpg"          =>      "image/jpeg",
77         ".jpeg"         =>      "image/jpeg",
78         ".png"          =>      "image/png",
79         ".xbm"          =>      "image/x-xbitmap",
80         ".xpm"          =>      "image/x-xpixmap",
81         ".xwd"          =>      "image/x-xwindowdump",
82         ".css"          =>      "text/css",
83         ".html"         =>      "text/html",
84         ".htm"          =>      "text/html",
85         ".js"           =>      "text/javascript",
86         ".asc"          =>      "text/plain",
87         ".c"            =>      "text/plain",
88         ".conf"         =>      "text/plain",
89         ".text"         =>      "text/plain",
90         ".txt"          =>      "text/plain",
91         ".dtd"          =>      "text/xml",
92         ".xml"          =>      "text/xml",
93         ".mpeg"         =>      "video/mpeg",
94         ".mpg"          =>      "video/mpeg",
95         ".mov"          =>      "video/quicktime",
96         ".qt"           =>      "video/quicktime",
97         ".avi"          =>      "video/x-msvideo",
98         ".asf"          =>      "video/x-ms-asf",
99         ".asx"          =>      "video/x-ms-asf",
100         ".wmv"          =>      "video/x-ms-wmv"
101 )
102
103 # Use the "Content-Type" extended attribute to obtain mime type if possible
104 #mimetype.use-xattr = "enable"
105
106 #### accesslog module
107 accesslog.filename = "/var/log/lighttpd/access.log"
108
109 ## deny access the file-extensions
110 #
111 # ~    is for backupfiles from vi, emacs, joe, ...
112 # .inc is often used for code includes which should in general not be part
113 #      of the document-root
114 url.access-deny = ( "~", ".inc" )
115
116 ######### Options that are good to be but not neccesary to be changed #######
117
118 ## bind to port (default: 80)
119 #server.port = 81
120
121 ## bind to localhost (default: all interfaces)
122 #server.bind = "grisu.home.kneschke.de"
123
124 ## error-handler for status 404
125 #server.error-handler-404 = "/error-handler.html"
126 #server.error-handler-404 = "/error-handler.php"
127
128 ## to help the rc.scripts
129 #server.pid-file = "/var/run/lighttpd.pid"
130
131 ###### virtual hosts
132 ##
133 ##   If you want name-based virtual hosting add the next three settings and load
134 ##   mod_simple_vhost
135 ##
136 ## document-root =
137 ##   virtual-server-root + virtual-server-default-host + virtual-server-docroot or
138 ##   virtual-server-root + http-host + virtual-server-docroot
139 ##
140 #simple-vhost.server-root         = "/home/weigon/wwwroot/servers/"
141 #simple-vhost.default-host        = "grisu.home.kneschke.de"
142 #simple-vhost.document-root       = "/pages/"
143
144
145 ##
146 ## Format: <errorfile-prefix><status>.html
147 ## -> ..../status-404.html for 'File not found'
148 #server.errorfile-prefix = "/home/weigon/projects/lighttpd/doc/status-"
149
150 ## virtual directory listings
151 #server.dir-listing          = "enable"
152
153 ## send unhandled HTTP-header headers to error-log
154 #debug.dump-unknown-headers  = "enable"
155
156 ### only root can use these options
157 #
158 # chroot() to directory (default: no chroot() )
159 #server.chroot            = "/"
160
161 ## change uid to <uid> (default: don't care)
162 server.username            = "lighttpd"
163
164 ## change uid to <uid> (default: don't care)
165 server.groupname           = "lighttpd"
166
167 #### compress module
168 #compress.cache-dir          = "/tmp/lighttpd/cache/compress/"
169 #compress.filetype           = ("text/plain", "text/html")
170
171 #### fastcgi module
172 ## read fastcgi.txt for more info
173 #fastcgi.server = (
174 #       ".php" => (
175 #               "localhost" => (
176 #                       "socket" => "/var/run/php/php-fastcgi.sock",
177 #                       "bin-path" => "/usr/bin/php.fcgi",
178 #               )
179 #       )
180 #)
181
182
183 #### CGI module
184 #cgi.assign = (
185 #       ".pl"  => "/usr/bin/perl",
186 #       ".cgi" => "/usr/bin/perl",
187 #)
188
189 #### SSL engine
190 #ssl.engine = "enable"
191 #ssl.pemfile = "server.pem"
192
193 #### status module
194 #status.status-url = "/server-status"
195 #status.config-url = "/server-config"
196
197 #### auth module
198 ## read authentification.txt for more info
199 #auth.backend                = "plain"
200 #auth.backend.plain.userfile = "lighttpd.user"
201 #auth.backend.plain.groupfile = "lighttpd.group"
202
203 #auth.backend.ldap.hostname = "localhost"
204 #auth.backend.ldap.base-dn  = "dc=my-domain,dc=com"
205 #auth.backend.ldap.filter   = "(uid=$)"
206
207 #auth.require = (
208 #       "/server-status" => (
209 #               "method"  => "digest",
210 #               "realm"   => "download archiv",
211 #               "require" => "group=www|user=jan|host=192.168.2.10"
212 #       ),
213 #       "/server-info" => (
214 #               "method"  => "digest",
215 #               "realm"   => "download archiv",
216 #               "require" => "group=www|user=jan|host=192.168.2.10"
217 #       ),
218 #)
219
220 #### url handling modules (rewrite, redirect, access)
221 #url.rewrite                 = ( "^/$"             => "/server-status" )
222 #url.redirect                = ( "^/wishlist/(.+)" => "http://www.123.org/$1" )
223
224 # define a pattern for the host url finding
225 # %% => % sign
226 # %0 => domain name + tld
227 # %1 => tld
228 # %2 => domain name without tld
229 # %3 => subdomain 1 name
230 # %4 => subdomain 2 name
231 #
232 #evhost.path-pattern = "/home/storage/dev/www/%3/htdocs/"
233
234 #### expire module
235 #expire.url = (
236 #       "/buggy/" => "access 2 hours",
237 #       "/asdhas/" => "access plus 1 seconds 2 minutes",
238 #)
239
240 #### ssi
241 #ssi.extension = ( ".shtml" )
242
243 #### rrdtool
244 #rrdtool.binary = "/usr/bin/rrdtool"
245 #rrdtool.db-name = "/var/www/lighttpd.rrd"
246
247 #### userdir module
248 #userdir.path = "public_html"
249 #userdir.exclude-user = ( "root", "postmaster" )
250 #
251 ## if set, only users from this list may use the feature
252 #userdir.include-user = ""
253
254 #### alias module
255 #alias.url = (
256 #       "/cgi-bin/" => "/usr/lib/cgi-bin",
257 #)
258
This page took 0.048301 seconds and 4 git commands to generate.