Guest User

Untitled

a guest
Apr 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # ----------------------------------------------------------------------
  2. # Proper MIME type for all files
  3. # ----------------------------------------------------------------------
  4.  
  5.  
  6. # JavaScript
  7. # Normalize to standard type (it's sniffed in IE anyways)
  8. # tools.ietf.org/html/rfc4329#section-7.2
  9. AddType application/javascript js
  10.  
  11. # Audio
  12. AddType audio/ogg oga ogg
  13. AddType audio/mp4 m4a
  14.  
  15. # Video
  16. AddType video/ogg ogv
  17. AddType video/mp4 mp4 m4v
  18. AddType video/webm webm
  19.  
  20. # SVG.
  21. # Required for svg webfonts on iPad
  22. # twitter.com/FontSquirrel/status/14855840545
  23. AddType image/svg+xml svg svgz
  24. AddEncoding gzip svgz
  25.  
  26. # Webfonts
  27. AddType application/vnd.ms-fontobject eot
  28. AddType application/x-font-ttf ttf ttc
  29. AddType font/opentype otf
  30. AddType application/x-font-woff woff
  31.  
  32. # Assorted types
  33. AddType image/x-icon ico
  34. AddType image/webp webp
  35. AddType text/cache-manifest appcache manifest
  36. AddType text/x-component htc
  37. AddType application/x-chrome-extension crx
  38. AddType application/x-opera-extension oex
  39. AddType application/x-xpinstall xpi
  40. AddType application/octet-stream safariextz
  41. AddType text/x-vcard vcf
Add Comment
Please, Sign In to add comment