Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 695 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 695 Bytes

Rack-P3p is rack middleware for inserting P3P headers into apps. This will allow your application to serve cookies to IE when in an iframe. It will also pull off the cookie on 304 responses, since IE does not like the cookie then.

Usage

To use Rack-P3p in rails, do the following. Anything else and we'll assume you're smart enough to figure it out :-)

Add rack-p3p to your gemfile:

gem 'rack-p3p'

Add it to your middleware stack in config/application.rb:

config.middleware.insert_before ActionDispatch::Session::CookieStore, Rack::P3p

Enjoy.

Credits

The code for this middleware was shamelessly ripped from a rubyonrails-core post from Robert Vogel. Thanks, Rob!