| 1 | # lighttpd configuration file
|
| 2 | #
|
| 3 | # use it as a base for lighttpd 1.0.0 and above
|
| 4 | #
|
| 5 | # $Id: lighttpd.conf,v 1.7 2004/11/03 22:26:05 weigon Exp $
|
| 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 | server.modules = (
|
| 15 | # "mod_rewrite",
|
| 16 | # "mod_redirect",
|
| 17 | # "mod_alias",
|
| 18 | "mod_access",
|
| 19 | # "mod_cml",
|
| 20 | # "mod_trigger_b4_dl",
|
| 21 | # "mod_auth",
|
| 22 | # "mod_status",
|
| 23 | # "mod_setenv",
|
| 24 | # "mod_fastcgi",
|
| 25 | # "mod_proxy",
|
| 26 | # "mod_simple_vhost",
|
| 27 | # "mod_evhost",
|
| 28 | # "mod_userdir",
|
| 29 | # "mod_cgi",
|
| 30 | # "mod_compress",
|
| 31 | # "mod_ssi",
|
| 32 | # "mod_usertrack",
|
| 33 | # "mod_expire",
|
| 34 | # "mod_secdownload",
|
| 35 | # "mod_rrdtool",
|
| 36 | "mod_accesslog" )
|
| 37 |
|
| 38 | ## a static document-root, for virtual-hosting take look at the
|
| 39 | ## server.virtual-* options
|
| 40 | server.document-root = "C:/lighttpd/htdocs/"
|
| 41 |
|
| 42 | ## where to send error-messages to
|
| 43 | server.errorlog = "C:/lighttpd/logs/lighttpd.error.log"
|
| 44 |
|
| 45 | # files to check for if .../ is requested
|
| 46 | index-file.names = ( "index.php", "index.html",
|
| 47 | "index.htm", "default.htm" )
|
| 48 |
|
| 49 | ## set the event-handler (read the performance section in the manual)
|
| 50 | # server.event-handler = "freebsd-kqueue" # needed on OS X
|
| 51 |
|
| 52 | # mimetype mapping
|
| 53 | mimetype.assign = (
|
| 54 | ".pdf" => "application/pdf",
|
| 55 | ".sig" => "application/pgp-signature",
|
| 56 | ".spl" => "application/futuresplash",
|
| 57 | ".class" => "application/octet-stream",
|
| 58 | ".ps" => "application/postscript",
|
| 59 | ".torrent" => "application/x-bittorrent",
|
| 60 | ".dvi" => "application/x-dvi",
|
| 61 | ".gz" => "application/x-gzip",
|
| 62 | ".pac" => "application/x-ns-proxy-autoconfig",
|
| 63 | ".swf" => "application/x-shockwave-flash",
|
| 64 | ".tar.gz" => "application/x-tgz",
|
| 65 | ".tgz" => "application/x-tgz",
|
| 66 | ".tar" => "application/x-tar",
|
| 67 | ".zip" => "application/zip",
|
| 68 | ".mp3" => "audio/mpeg",
|
| 69 | ".m3u" => "audio/x-mpegurl",
|
| 70 | ".wma" => "audio/x-ms-wma",
|
| 71 | ".wax" => "audio/x-ms-wax",
|
| 72 | ".ogg" => "application/ogg",
|
| 73 | ".wav" => "audio/x-wav",
|
| 74 | ".gif" => "image/gif",
|
| 75 | ".jpg" => "image/jpeg",
|
| 76 | ".jpeg" => "image/jpeg",
|
| 77 | ".png" => "image/png",
|
| 78 | ".xbm" => "image/x-xbitmap",
|
| 79 | ".xpm" => "image/x-xpixmap",
|
| 80 | ".xwd" => "image/x-xwindowdump",
|
| 81 | ".css" => "text/css",
|
| 82 | ".html" => "text/html",
|
| 83 | ".htm" => "text/html",
|
| 84 | ".js" => "text/javascript",
|
| 85 | ".asc" => "text/plain",
|
| 86 | ".c" => "text/plain",
|
| 87 | ".cpp" => "text/plain",
|
| 88 | ".log" => "text/plain",
|
| 89 | ".conf" => "text/plain",
|
| 90 | ".text" => "text/plain",
|
| 91 | ".txt" => "text/plain",
|
| 92 | ".dtd" => "text/xml",
|
| 93 | ".xml" => "text/xml",
|
| 94 | ".mpeg" => "video/mpeg",
|
| 95 | ".mpg" => "video/mpeg",
|
| 96 | ".mov" => "video/quicktime",
|
| 97 | ".qt" => "video/quicktime",
|
| 98 | ".avi" => "video/x-msvideo",
|
| 99 | ".asf" => "video/x-ms-asf",
|
| 100 | ".asx" => "video/x-ms-asf",
|
| 101 | ".wmv" => "video/x-ms-wmv",
|
| 102 | ".bz2" => "application/x-bzip",
|
| 103 | ".tbz" => "application/x-bzip-compressed-tar",
|
| 104 | ".tar.bz2" => "application/x-bzip-compressed-tar"
|
| 105 | )
|
| 106 |
|
| 107 | # Use the "Content-Type" extended attribute to obtain mime type if possible
|
| 108 | #mimetype.use-xattr = "enable"
|
| 109 |
|
| 110 |
|
| 111 | ## send a different Server: header
|
| 112 | ## be nice and keep it at lighttpd
|
| 113 | server.tag = "lighttpd/1.4.11 (Win32)"
|
| 114 |
|
| 115 | #### accesslog module
|
| 116 | accesslog.filename = "C:/lighttpd/logs/access.log"
|
| 117 |
|
| 118 | ## deny access the file-extensions
|
| 119 | #
|
| 120 | # ~ is for backupfiles from vi, emacs, joe, ...
|
| 121 | # .inc is often used for code includes which should in general not be part
|
| 122 | # of the document-root
|
| 123 | url.access-deny = ( "~", ".inc" )
|
| 124 |
|
| 125 | $HTTP["url"] =~ "\.pdf$" {
|
| 126 | server.range-requests = "disable"
|
| 127 | }
|
| 128 |
|
| 129 | ##
|
| 130 | # which extensions should not be handle via static-file transfer
|
| 131 | #
|
| 132 | # .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
|
| 133 | static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
|
| 134 |
|
| 135 | ######### Options that are good to be but not neccesary to be changed #######
|
| 136 |
|
| 137 | ## bind to port (default: 80)
|
| 138 | #server.port = 81
|
| 139 |
|
| 140 | ## bind to localhost (default: all interfaces)
|
| 141 | #server.bind = "grisu.home.kneschke.de"
|
| 142 |
|
| 143 | ## error-handler for status 404
|
| 144 | #server.error-handler-404 = "/error-handler.html"
|
| 145 | #server.error-handler-404 = "/error-handler.php"
|
| 146 |
|
| 147 | ## to help the rc.scripts
|
| 148 | #server.pid-file = "/var/run/lighttpd.pid"
|
| 149 |
|
| 150 |
|
| 151 | ###### virtual hosts
|
| 152 | ##
|
| 153 | ## If you want name-based virtual hosting add the next three settings and load
|
| 154 | ## mod_simple_vhost
|
| 155 | ##
|
| 156 | ## document-root =
|
| 157 | ## virtual-server-root + virtual-server-default-host + virtual-server-docroot
|
| 158 | ## or
|
| 159 | ## virtual-server-root + http-host + virtual-server-docroot
|
| 160 | ##
|
| 161 | #simple-vhost.server-root = "/home/weigon/wwwroot/servers/"
|
| 162 | #simple-vhost.default-host = "grisu.home.kneschke.de"
|
| 163 | #simple-vhost.document-root = "/pages/"
|
| 164 |
|
| 165 |
|
| 166 | ##
|
| 167 | ## Format: <errorfile-prefix><status-code>.html
|
| 168 | ## -> ..../status-404.html for 'File not found'
|
| 169 | #server.errorfile-prefix = "/home/weigon/projects/lighttpd/doc/status-"
|
| 170 |
|
| 171 | ## virtual directory listings
|
| 172 | #dir-listing.activate = "enable"
|
| 173 |
|
| 174 | ## enable debugging
|
| 175 | #debug.log-request-header = "enable"
|
| 176 | #debug.log-response-header = "enable"
|
| 177 | #debug.log-request-handling = "enable"
|
| 178 | #debug.log-file-not-found = "enable"
|
| 179 |
|
| 180 | ### only root can use these options
|
| 181 | #
|
| 182 | # chroot() to directory (default: no chroot() )
|
| 183 | #server.chroot = "/"
|
| 184 |
|
| 185 | ## change uid to <uid> (default: don't care)
|
| 186 | #server.username = "wwwrun"
|
| 187 |
|
| 188 | ## change uid to <uid> (default: don't care)
|
| 189 | #server.groupname = "wwwrun"
|
| 190 |
|
| 191 | #### compress module
|
| 192 | #compress.cache-dir = "/tmp/lighttpd/cache/compress/"
|
| 193 | #compress.filetype = ("text/plain", "text/html")
|
| 194 |
|
| 195 | #### proxy module
|
| 196 | ## read proxy.txt for more info
|
| 197 | #proxy.server = ( ".php" =>
|
| 198 | # ( "localhost" =>
|
| 199 | # (
|
| 200 | # "host" => "192.168.0.101",
|
| 201 | # "port" => 80
|
| 202 | # )
|
| 203 | # )
|
| 204 | # )
|
| 205 |
|
| 206 | #### fastcgi module
|
| 207 | ## read fastcgi.txt for more info
|
| 208 | ## for PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini
|
| 209 | #fastcgi.server = ( ".php" =>
|
| 210 | # ( "localhost" =>
|
| 211 | # (
|
| 212 | # "socket" => "/tmp/php-fastcgi.socket",
|
| 213 | # "bin-path" => "/usr/local/bin/php"
|
| 214 | # )
|
| 215 | # )
|
| 216 | # )
|
| 217 |
|
| 218 | #### CGI module
|
| 219 | #cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| 220 | # ".cgi" => "/usr/bin/perl" )
|
| 221 | #
|
| 222 |
|
| 223 | #### SSL engine
|
| 224 | #ssl.engine = "enable"
|
| 225 | #ssl.pemfile = "C:/lighttpd/sbin/server.pem"
|
| 226 |
|
| 227 | #### status module
|
| 228 | #status.status-url = "/server-status"
|
| 229 | #status.config-url = "/server-config"
|
| 230 |
|
| 231 | #### auth module
|
| 232 | ## read authentication.txt for more info
|
| 233 | #auth.backend = "plain"
|
| 234 | #auth.backend.plain.userfile = "lighttpd.user"
|
| 235 | #auth.backend.plain.groupfile = "lighttpd.group"
|
| 236 |
|
| 237 | #auth.backend.ldap.hostname = "localhost"
|
| 238 | #auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
|
| 239 | #auth.backend.ldap.filter = "(uid=$)"
|
| 240 |
|
| 241 | #auth.require = ( "/server-status" =>
|
| 242 | # (
|
| 243 | # "method" => "digest",
|
| 244 | # "realm" => "download archiv",
|
| 245 | # "require" => "user=jan"
|
| 246 | # ),
|
| 247 | # "/server-config" =>
|
| 248 | # (
|
| 249 | # "method" => "digest",
|
| 250 | # "realm" => "download archiv",
|
| 251 | # "require" => "valid-user"
|
| 252 | # )
|
| 253 | # )
|
| 254 |
|
| 255 | #### url handling modules (rewrite, redirect, access)
|
| 256 | #url.rewrite = ( "^/$" => "/server-status" )
|
| 257 | #url.redirect = ( "^/wishlist/(.+)" => "http://www.123.org/$1" )
|
| 258 | #### both rewrite/redirect support back reference to regex conditional using %n
|
| 259 | #$HTTP["host"] =~ "^www\.(.*)" {
|
| 260 | # url.redirect = ( "^/(.*)" => "http://%1/$1" )
|
| 261 | #}
|
| 262 |
|
| 263 | #
|
| 264 | # define a pattern for the host url finding
|
| 265 | # %% => % sign
|
| 266 | # %0 => domain name + tld
|
| 267 | # %1 => tld
|
| 268 | # %2 => domain name without tld
|
| 269 | # %3 => subdomain 1 name
|
| 270 | # %4 => subdomain 2 name
|
| 271 | #
|
| 272 | #evhost.path-pattern = "/home/storage/dev/www/%3/htdocs/"
|
| 273 |
|
| 274 | #### expire module
|
| 275 | #expire.url = ( "/buggy/" => "access 2 hours", "/asdhas/" => "access plus 1 seconds 2 minutes")
|
| 276 |
|
| 277 | #### ssi
|
| 278 | #ssi.extension = ( ".shtml" )
|
| 279 |
|
| 280 | #### rrdtool
|
| 281 | #rrdtool.binary = "/usr/bin/rrdtool"
|
| 282 | #rrdtool.db-name = "/var/www/lighttpd.rrd"
|
| 283 |
|
| 284 | #### setenv
|
| 285 | #setenv.add-request-header = ( "TRAV_ENV" => "mysql://user@host/db" )
|
| 286 | #setenv.add-response-header = ( "X-Secret-Message" => "42" )
|
| 287 |
|
| 288 | ## for mod_trigger_b4_dl
|
| 289 | # trigger-before-download.gdbm-filename = "/home/weigon/testbase/trigger.db"
|
| 290 | # trigger-before-download.memcache-hosts = ( "127.0.0.1:11211" )
|
| 291 | # trigger-before-download.trigger-url = "^/trigger/"
|
| 292 | # trigger-before-download.download-url = "^/download/"
|
| 293 | # trigger-before-download.deny-url = "http://127.0.0.1/index.html"
|
| 294 | # trigger-before-download.trigger-timeout = 10
|
| 295 |
|
| 296 | ## for mod_cml
|
| 297 | ## don't forget to add index.cml to server.indexfiles
|
| 298 | # cml.extension = ".cml"
|
| 299 | # cml.memcache-hosts = ( "127.0.0.1:11211" )
|
| 300 |
|
| 301 | #### variable usage:
|
| 302 | ## variable name without "." is auto prefixed by "var." and becomes "var.bar"
|
| 303 | #bar = 1
|
| 304 | #var.mystring = "foo"
|
| 305 |
|
| 306 | ## integer add
|
| 307 | #bar += 1
|
| 308 | ## string concat, with integer cast as string, result: "www.foo1.com"
|
| 309 | #server.name = "www." + mystring + var.bar + ".com"
|
| 310 | ## array merge
|
| 311 | #index-file.names = (foo + ".php") + index-file.names
|
| 312 | #index-file.names += (foo + ".php")
|
| 313 |
|
| 314 | #### include
|
| 315 | #include /etc/lighttpd/lighttpd-inc.conf
|
| 316 | ## same as above if you run: "lighttpd -f /etc/lighttpd/lighttpd.conf"
|
| 317 | #include "lighttpd-inc.conf"
|
| 318 |
|
| 319 | #### include_shell
|
| 320 | #include_shell "echo var.a=1"
|
| 321 | ## the above is same as:
|
| 322 | #var.a=1
|