libmagicを使用して、プロジェクトのWebインターフェイスでファイルのmimeタイプを取得します。cssおよびjsファイルでtext/plainmimeタイプを取得します。
たとえば、クロムは以下の警告を示しています。
Resource interpreted as Stylesheet but transferred with MIME type text/plain: "http://localhost:8000/jquery-ui.css".
Resource interpreted as Script but transferred with MIME type text/plain: "http://localhost:8000/jquery.timers.js".
Httpダイアログ
alex@alex-laptop ~ $ nc localhost 8000
GET /ui.css HTTP/1.1
HTTP/1.1 200 OK
Connection: close
Content-Length: 699
Content-Type: text/plain; charset=us-ascii
Date: Wed, 19 Sep 2012 11:41:48 GMT
...
どうすればこれを修正できますか?