wai-middleware-static

WAI middleware that serves requests to static files.

https://github.com/scotty-web/wai-middleware-static

Version on this page:0.8.1@rev:1
LTS Haskell 22.13:0.9.2@rev:4
Stackage Nightly 2024-03-14:0.9.2@rev:4
Latest on Hackage:0.9.2@rev:4

See all snapshots wai-middleware-static appears in

BSD-3-Clause licensed and maintained by Andrew Farmer
This version can be pinned in stack with:wai-middleware-static-0.8.1@sha256:2884eb9d594bdc91a8ab7dd045e4252472c45361907c470f594a7f2a573d7752,2498

Module documentation for 0.8.1

wai-middleware-static Build StatusCoverage Status

WAI middleware that intercepts requests to static files and serves them if they exist.

Changes

0.8.1

  • Add Semigroup Policy instance
  • Replace dependencies on base16-bytestring and cryptohash with the more modern memory and cryptonite packages, respectively [myfreeweb]

0.8.0

  • The mime-types library is now used to lookup MIME types from extensions. As a result, some extensions now map to different MIME types. They are:

    Extension wai-middleware-static mime-types
    class application/octet-stream application/java-vm
    dtd text/xml application/xml-dtd
    jar application/x-java-archive application/java-archive
    js text/javascript application/javascript
    ogg application/ogg audio/ogg
    ttf application/x-font-truetype application/x-font-ttf
  • Exposed getMimeType function [Shimuuar]

0.7.0.1

  • Fixed Windows build (by replacing unix dependency with equivalent directory function)

0.7.0.0

  • Implement caching [agrafix]
  • Include mp4 and ogv mime_types [DrBoolean]
  • Dependency updates for ghc 7.10 [DougBurke]

0.6.0.1

  • Update links to new wai-middleware-static github/issue tracker.

  • Bump upper bound for text

0.6.0

  • Update to wai 3.0

0.5.0.1

  • Bump upper bound for mtl

0.5.0.0

  • Add isNotAbsolute policy and change static and staticPolicy to use noDots and isNotAbsolute policies by default. (Thanks to Nick Hibberd!)

  • Add unsafeStaticPolicy, which behaves as the old insecure staticPolicy behaved.

  • Add changelog