]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.conf
- add server.max-write-idle
[packages/lighttpd.git] / lighttpd.conf
1 # $Id$
2 # lighttpd configuration file.
3
4 include_shell "/bin/cat conf.d/*.conf"
5
6 ## a static document-root, for virtual-hosting take look at the
7 ## server.virtual-* options
8 server.document-root = "/home/services/lighttpd/html/"
9
10 ## where to send error-messages to
11 server.errorlog = "/var/log/lighttpd/error.log"
12 server.pid-file = "/var/run/lighttpd.pid"
13
14 # mimetype mapping
15 # include, relative to dirname of main config file
16 include "mime.types.conf"
17
18 ## set the event-handler (read the performance section in the manual)
19 # Linux 2.4+   rt-signals linux-rtsig
20 # Linux 2.6+   epoll   linux-sysepoll
21 #server.event-handler = "linux-sysepoll"
22
23 # maximum number of seconds until a waiting write call times out and closes the connection
24 # default 360
25 #server.max-write-idle = 360
26
27 # Use the "Content-Type" extended attribute to obtain mime type if possible
28 #mimetype.use-xattr = "enable"
29
30 ## send a different Server: header
31 ## be nice and keep it at lighttpd
32 #server.tag = "lighttpd"
33
34 $HTTP["url"] =~ "\.pdf$" {
35         server.range-requests = "disable"
36 }
37
38 ######### Options that are good to be but not neccesary to be changed #######
39
40 ## bind to port (default: 80)
41 server.port = 80
42
43 ## bind to localhost (default: all interfaces)
44 #server.bind = "grisu.home.kneschke.de"
45
46 ## error-handler for status 404
47 #server.error-handler-404 = "/error-handler.html"
48 #server.error-handler-404 = "/error-handler.php"
49
50 ##
51 ## Format: <errorfile-prefix><status-code>.html
52 ## -> ..../status-404.html for 'File not found'
53 #server.errorfile-prefix = "/home/weigon/projects/lighttpd/doc/status-"
54 #
55 ## enable debugging
56 #debug.log-request-header    = "enable"
57 #debug.log-response-header   = "enable"
58 #debug.log-request-handling  = "enable"
59 #debug.log-file-not-found    = "enable"
60 #debug.log-condition-handling = "enable"
61
62 ### only root can use these options
63 #
64 # chroot() to directory (default: no chroot() )
65 #server.chroot            = "/"
66
67 ## change uid to <uid> (default: don't care)
68 server.username            = "lighttpd"
69
70 ## change uid to <uid> (default: don't care)
71 server.groupname           = "lighttpd"
72
73 # Traffic Shaping
74 #
75 #connection.kbytes-per-second = 32
76 #server.kbytes-per-second = 128
77
78 # webapps configs
79 include_shell "/bin/cat webapps.d/*.conf"
This page took 4.449645 seconds and 4 git commands to generate.