the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
534 B
25 lines
534 B
|
|
setup { |
|
|
|
module_load ( |
|
"mod_accesslog", |
|
"mod_dirlist" |
|
); |
|
|
|
listen "0.0.0.0:80"; |
|
listen "[::]:80"; |
|
|
|
log ["debug" => "", "*" => "/var/log/lighttpd2/error.log"]; |
|
accesslog "/var/log/lighttpd2/access.log"; |
|
accesslog.format "%h %V %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""; |
|
|
|
static.exclude_extensions ( ".php", ".pl", ".fcgi", "~", ".inc" ); |
|
|
|
} |
|
|
|
include "/etc/lighttpd2/mimetypes.conf"; |
|
|
|
docroot "/var/www"; |
|
index ( "index.php", "index.html", "index.htm", "default.htm", "index.lighttpd.html" ); |
|
dirlist; |
|
static;
|
|
|