I want to make my Cherokee serve specific mime-types for my xml files. Now it only gives mimetype application/xml for all xml files.
In apache it is possible to write the following in /etc/apache2/apache2.conf.
<directory dir>
AddType application/a a.xml
AddType application/b b.xml
AddType application/c c.xml
AddType application/d d.xml
</directory>
So that for instance dir/a.xml always get served with content type application/a. Can I do something similar in Cherokee?