See attached image for example. It looks like no css is applied, but the accesslog for lighttpd say they are downloaded. However, no files from the images dir are fetched.
Anyone have an idea what the problem might be?
Solution:
I added a few mime types to my lighttpd.conf file:
Code:
mimetype.assign = (
".gif" => "image/gif",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".txt" => "text/plain",
".xml" => "text/xml",
# make the default mime type application/octet-stream.
"" => "application/octet-stream"
)
Not sure which one did the trick, but now it's working