Sorry - I found my error - the second parameter in the options list must be 'content_type' not 'content-type' 

Thanks



On Mon, Feb 18, 2013 at 7:28 PM, Gurunandan Bhat <bhat.gurunandan@gmail.com> wrote:
Hi, 

I am trying to configure Plack::Middleware::Expires and Deflater to add an expires header and gzip with the following in my config.yml:

plack_middlewares:
  -
    - Expires
    - content-type
    -
      - image/gif
      - image/jpeg
    - expires
    - access plus 1 day
  -
    - Deflater

I find that while the Deflater middleware works correctly, the Expires does not. Is there an error in my YAML syntax? I tried to parse the YAML separately and I seem to get the correct options that Expires expects.

Would appreciate your help,

Thank you.