I'm using node-http-proxy and want to watch for a particular response header and rewrite it if necessary. Anyone here have suggestions on to do this? https://github.com/nodejitsu/node-http-proxy/
My proxy server sits in front of a couple different node servers as well as a java webapp. The java app is setting a cookie, but the cookie has a path that is relative the the webapp's context. I need the cookie to have a path to root without modifying the Java application. In other words, the following header is returned: set-cookie: MYSPECIALCOOKIE=679b6291-d1cc-47be; Path=/app; HttpOnly And I'd like to rewrite the Path value to: set-cookie: MYSPECIALCOOKIE=679b6291-d1cc-47be; Path=/; HttpOnly I'm not clear how I would do this using node-http-proxy. Suggestions? Is there middleware to help with this? Thanks, Tauren -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
