2
0
Fork 0

[doc]: fix config examples

personal/stbuehler/wip
Stefan Bühler 2011-08-28 14:17:44 +02:00
parent 2ebf367df5
commit dbfca1b2cb
2 changed files with 5 additions and 5 deletions

View File

@ -9,13 +9,13 @@ setup {
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\"";
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\"";
include "/etc/lighttpd2/mimetypes.conf";
static.exclude_extensions = ( ".php", ".pl", ".fcgi", "~", ".inc" );
static.exclude_extensions ( ".php", ".pl", ".fcgi", "~", ".inc" );
}

View File

@ -1,4 +1,4 @@
mime_types = (
mime_types (
".ez" => "application/andrew-inset",
".anx" => "application/annodex",
".atom" => "application/atom+xml",