Ich hab mal spaßeshalber Lighttpd auf einen Stick gehauen und gestartet. Das ist mal meine conf. Index.php und index.html liegen im server.document-root und bei mir geht alles.
Code:
server.document-root = "/var/media/ftp/uStor01/light/www/"
server.port = 85
index-file.names = (
"index.html",
"index.php",
)
mimetype.assign = (
".html" => "text/html",
)
server.modules = (
"mod_fastcgi",
)
fastcgi.server = ( ".php" => ((
"bin-path" => "/var/media/ftp/uStor01/light/cgi-bin/php",
"socket" => "/var/tmp/php.socket",
"max-procs" => 1,
)))