edit: Solved!
Commented out server.error-handler-404 = "/index.php?error=404" everywhere. No idea why it started giving me troubles now, had them forever. Though, I recently updated lighttpd and apache2 (updated when going from debian lenny to squeeze).
Original post:
I'm running lighttpd as reverse proxy for static files and apache2 for the php on my webserver. When an image file is supposed to return 404, I'm getting this error:
Resource interpreted as Image but transferred with MIME type text/html: "http://sub1.domain.com/?error=404".
I have ".gif" => "image/gif" under mimetype.assign in my lighttpd.conf file.
Could there be something wrong with my $HTTP["host"] configurations? I've recently added a subdomain, and since then I've noticed these errors.
Full lighttpd.conf file (with edited ip adresses and domain names):
server.modules = (
# "mod_expire",
"mod_rewrite",
"mod_redirect",
"mod_alias",
"mod_fastcgi",
"mod_access",
# "mod_trigger_b4_dl",
"mod_auth",
"mod_status",
# "mod_setenv",
"mod_proxy",
# "mod_proxy_core",
# "mod_proxy_backend_http",
# "mod_proxy_backend_fastcgi",
# "mod_proxy_backend_scgi",
# "mod_proxy_backend_ajp13",
# "mod_simple_vhost",
# "mod_evhost",
# "mod_userdir",
# "mod_cgi",
"mod_compress",
"mod_ssi",
# "mod_usertrack",
"mod_expire",
# "mod_secdownload",
# "mod_rrdtool",
"mod_accesslog",
"mod_extforward")
## A static document-root. For virtual hosting take a look at the
## mod_simple_vhost module.
#server.document-root = "/var/www/www.anotherdomain.com/public/"
server.document-root = "/var/www/"
server.username = "www-data"
server.groupname = "www-data"
## where to send error-messages to
#server.errorlog = "/var/log/lighttpd/lighttpd.error.log"
# files to check for if .../ is requested
index-file.names = ( "index.php", "index.html",
"index.htm", "default.htm" )
## set the event-handler (read the performance section in the manual)
# server.event-handler = "freebsd-kqueue" # needed on OS X
# Setup compress.cache-dir to stored all cached file:
compress.cache-dir = "/var/www/cache/"
expire.url = (
"/assets/uploads/articles" => "access 7 days",
"/images/" => "access 7 days",
"/js/" => "access 7 days"
)
# mimetype mapping
mimetype.assign = (
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".gz" => "application/x-gzip",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tar.gz" => "application/x-tgz",
".tgz" => "application/x-tgz",
".tar" => "application/x-tar",
".zip" => "application/zip",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "application/ogg",
".wav" => "audio/x-wav",
".gif" => "image/gif",
".jar" => "application/x-java-archive",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".json" => "application/json",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".dtd" => "text/xml",
".xml" => "text/xml",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".bz2" => "application/x-bzip",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar",
".woff" => "application/x-font-woff"
)
compress.filetype = ("text/plain","text/css", "text/xml", "text/javascript" )
# Use the "Content-Type" extended attribute to obtain mime type if possible
#mimetype.use-xattr = "enable"
## send a different Server: header
## be nice and keep it at lighttpd
server.tag = "lighttpd"
#### accesslog module
accesslog.filename = "/var/log/lighttpd/access.log"
### errorlog#
server.errorlog = "/var/log/lighttpd/error.log"
## deny access the file-extensions
#
# ~ is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be part
# of the document-root
url.access-deny = ( "~", ".inc" )
$HTTP["url"] =~ "\.pdf$" {
server.range-requests = "disable"
}
##
# which extensions should not be handle via static-file transfer
#
# .php, .pl, .fcgi are most often handled by mod_proxy_core or mod_cgi
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
######### Options that are good to be but not neccesary to be changed #######
## bind to port (default: 80)
#server.port = 81
server.port = 80
server.error-handler-404 = "/index.php?error=404"
## to help the rc.scripts
server.pid-file = "/var/run/lighttpd.pid"
# mod_extforward
extforward.forwarder = (
"1.1.1.1" => "trust"
)
extforward.headers = ("X-Cluster-Client-Ip")
### Send requests for certain files to apache server
$HTTP["url"] !~ "(?i)\.(js|css|gif|jpg|png|ico|txt|swf|mp3|pdf|ps|wav|flv|zip|rar|gz|tar)$" {
proxy.server = ( "" => (
( "host" => "1.1.1.1", "port" => 8080 )
))
}
##### HOST SETTINGS
$HTTP["host"] == "sub1.domain.com" {
server.document-root = "/var/www/sub1.domain.com/public/"
server.error-handler-404 = "/index.php?error=404"
#server.errorfile-prefix = "/var/www/sub1.domain.com/public/"
server.error-log = "/var/www/sub1.domain.com/log/light.error.log"
access-log.filename = "/var/www/sub1.domain.com/log/light.access.log"
### Only allow specific IP(s) to access site
$HTTP["remoteip"] !~ "1.1.1.1|2.1.1.1" {
$HTTP["url"] =~ "/" {
url.access-deny = ("")
}
}
}
$HTTP["host"] == "sub2.domain.com" {
server.document-root = "/var/www/sub2.domain.com/public/"
server.error-log = "/var/www/sub2.domain.com/log/light.error.log"
access-log.filename = "/var/www/sub2.domain.com/log/light.access.log"
}
$HTTP["host"] == "sub3.domain.com" {
server.document-root = "/var/www/sub3.domain.com/public/"
server.error-log = "/var/www/sub3.domain.com/log/light.error.log"
access-log.filename = "/var/www/sub3.domain.com/log/light.access.log"
}
$HTTP["host"] == "www.domain.com" {
server.document-root = "/var/www/www.domain.com/public/"
server.error-handler-404 = "/index.php?error=404"
server.error-log = "/var/www/www.domain.com/log/light.error.log"
access-log.filename = "/var/www/www.domain.com/log/light.access.log"
ssl.pemfile = "/etc/lighttpd/certs/www.domain.com.pem"
}
$HTTP["host"] == "www.anotherdomain.com" {
server.document-root = "/var/www/www.anotherdomain.com/public/"
server.error-handler-404 = "/index.php?error=404"
server.error-log = "/var/www/www.anotherdomain.com/log/light.error.log"
access-log.filename = "/var/www/www.anotherdomain.com/log/light.access.log"
}
$HTTP["host"] =~ "(^|\.)yetanotherdomain\.com$" {
server.document-root = "/var/www/www.yetanotherdomain.com/public/"
server.error-handler-404 = "/index.php?error=404"
server.errorlog = "/var/www/www.yetanotherdomain.com/log/light.error.log"
accesslog.filename = "/var/www/www.yetanotherdomain.com/log/light.access.log"
}
$HTTP["host"] =~ "(^|\.)yetanotherdomain\.com/2010($|/)" {
server.document-root = "/var/www/www.yetanotherdomain.com/public/2010/"
server.error-handler-404 = "/2010/index.php?error=404"
server.errorlog = "/var/www/www.yetanotherdomain.com/log/light.error.log"
accesslog.filename = "/var/www/www.yetanotherdomain.com/log/light.access.log"
}
$HTTP["host"] =~ "(^|\.)yetanotherdomain\.com/2011($|/)" {
server.document-root = "/var/www/www.yetanotherdomain.com/public/2011/"
server.error-handler-404 = "/2011/index.php?error=404"
server.errorlog = "/var/www/www.yetanotherdomain.com/log/light.error.log"
accesslog.filename = "/var/www/www.yetanotherdomain.com/log/light.access.log"
}
### FastCGI module
fastcgi.comrver = ( ".php" =>
( "localhost" =>
(
"socket" => "/tmp/php.socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)