".js" => "application/x-javascript",
".png" => "image/png",
".swf" => "application/x-shockwave-flash",
- ".txt" => "text/plain"
+ ".txt" => "text/plain",
+ ".xml" => "text/xml"
)
+#
+# Force special MIME type for crossdomain.xml files
+#
+$HTTP["url"] =~ "/crossdomain\.xml$" {
+ mimetype.assign = ( ".xml" => "text/x-cross-domain-policy" )
+}
+
#
# Enable compression of appropriate static content
#
# Set expiry for static content
#
expire.url = (
+ "/export/" => "access 7 days",
"/images/" => "access 10 years",
"/javascripts/" => "access 10 years",
- "/openlayers/" => "access 10 years",
+ "/openlayers/" => "access 7 days",
"/stylesheets/" => "access 10 years"
)