2
0
Fork 0
lighttpd2/contrib/lighttpd.conf

26 lines
538 B
Plaintext
Raw Normal View History

2010-02-14 18:00:46 +00:00
setup {
2013-09-10 10:07:57 +00:00
module_load [
2010-02-14 18:00:46 +00:00
"mod_accesslog",
"mod_dirlist"
2013-09-10 10:07:57 +00:00
];
2010-02-14 18:00:46 +00:00
listen "0.0.0.0:80";
listen "[::]:80";
2013-09-10 10:07:57 +00:00
log ["debug" => "", default => "/var/log/lighttpd2/error.log"];
2011-08-28 12:17:44 +00:00
accesslog "/var/log/lighttpd2/access.log";
accesslog.format "%h %V %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"";
2010-02-14 18:00:46 +00:00
2013-09-10 10:07:57 +00:00
static.exclude_extensions [ ".php", ".pl", ".fcgi", "~", ".inc" ];
2010-02-14 18:00:46 +00:00
}
include "/etc/lighttpd2/mimetypes.conf";
2010-02-14 18:00:46 +00:00
docroot "/var/www";
2013-09-10 10:07:57 +00:00
index [ "index.php", "index.html", "index.htm", "default.htm", "index.lighttpd.html" ];
2010-02-14 18:00:46 +00:00
dirlist;
static;