]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.conf
- merged modular config from DEVEL
[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 # Use the "Content-Type" extended attribute to obtain mime type if possible
24 #mimetype.use-xattr = "enable"
25
26 ## send a different Server: header
27 ## be nice and keep it at lighttpd
28 #server.tag = "lighttpd"
29
30 $HTTP["url"] =~ "\.pdf$" {
31         server.range-requests = "disable"
32 }
33
34 ######### Options that are good to be but not neccesary to be changed #######
35
36 ## bind to port (default: 80)
37 server.port = 80
38
39 ## bind to localhost (default: all interfaces)
40 #server.bind = "grisu.home.kneschke.de"
41
42 ## error-handler for status 404
43 #server.error-handler-404 = "/error-handler.html"
44 #server.error-handler-404 = "/error-handler.php"
45
46 ##
47 ## Format: <errorfile-prefix><status-code>.html
48 ## -> ..../status-404.html for 'File not found'
49 #server.errorfile-prefix = "/home/weigon/projects/lighttpd/doc/status-"
50 #
51 ## enable debugging
52 #debug.log-request-header    = "enable"
53 #debug.log-response-header   = "enable"
54 #debug.log-request-handling  = "enable"
55 #debug.log-file-not-found    = "enable"
56 #debug.log-condition-handling = "enable"
57
58 ### only root can use these options
59 #
60 # chroot() to directory (default: no chroot() )
61 #server.chroot            = "/"
62
63 ## change uid to <uid> (default: don't care)
64 server.username            = "lighttpd"
65
66 ## change uid to <uid> (default: don't care)
67 server.groupname           = "lighttpd"
68
69 # Traffic Shaping
70 #
71 #connection.kbytes-per-second = 32
72 #server.kbytes-per-second = 128
73
74 # webapps configs
75 include_shell "/bin/cat webapps.d/*.conf"
This page took 0.037402 seconds and 4 git commands to generate.