server.document-root = "/var/www/" server.port = 80 server.username = "www-data" server.groupname = "www-data" include "mod_fastcgi.conf" mimetype.assign = ( ".html" => "text/html", ".htm" => "text/html", ".txt" => "text/plain", ".jpg" => "image/jpeg", ".png" => "image/png", ".gif" => "image/gif", ".ico" => "image/vnd.microsoft.icon" ) static-file.exclude-extensions = (".php") index-file.names = ("index.php") server.modules += ( "mod_rewrite" ) url.rewrite = ( "^/?$" => "/index.php", "^/(.*)$" => "/files/$1" )