Dear Mongrel People,

lighttpd allows me to assign a mimetype to a file which ends with a
specific suffix.

For example if I have a file named, "helloworld.manifest", and I serve
it using lighttpd,
I can declare its mimetype with the following declaration in
lighttpd.conf:

mimetype.assign = (
  ".manifest"   =>  "text/cache-manifest",
  ".css"        =>  "text/css",
  ".gif"        =>  "image/gif",
  ".htm"        =>  "text/html",
  ".html"       =>  "text/html",
  ".jpeg"       =>  "image/jpeg",
  ".jpg"        =>  "image/jpeg",
  ".js"         =>  "text/javascript",
  ".png"        =>  "image/png",
  ".swf"        =>  "application/x-shockwave-flash",
  ".txt"        =>  "text/plain"
)

With Mongrel, how do I declare the mimetype of "helloworld.manifest" ?

-b

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to