var.dir = "/var/www" # Define basic settings: server.document-root = var.dir + "/html" server.port = 80 server.username = "www-data" server.groupname = "www-data" server.errorlog = "/var/log/lighttpd/error.log" mimetype.assign = ( ".html" => "text/html", ".txt" => "text/plain", ".jpg" => "image/jpeg", ".png" => "image/png" ) static-file.exclude-extensions = ( ".fcgi", ".php", "~", ".inc" ) index-file.names = ( "index.html" )