Forum: NGINX proxy_hide_header

Posted by giskarda (Guest)
on 2010-03-04 13:28
(Received via mailing list)
when i curl for a url i get this answer back:

> 
< HTTP/1.1 200 OK
< Server: nginx/0.7.65
< Date: Thu, 04 Mar 2010 12:18:27 GMT
< Content-Type: application/json
< Connection: close
< Expires: Thu, 04 Mar 2010 12:18:27 UTC
< http.context.path: /1/
< jersey.response: 
com.sun.jersey.spi.container.ContainerResponse@17646d60
< http.custom.headers: {Content-Type=text/plain}
< http.request.path: /2/messages/latest.json
< http.status: 200
< Transfer-Encoding: chunked

i want to remove

< http.context.path: /1/
< jersey.response: 
com.sun.jersey.spi.container.ContainerResponse@17646d60
< http.custom.headers: {Content-Type=text/plain}
< http.request.path: /2/messages/latest.json
< http.status: 200

so i used the proxy_hide_header directive in this way:

            location / {
      if ($arg_id) {
        proxy_pass http://authorized;
        break;
      }
        proxy_pass http://anonymous;
        proxy_hide_header http.context.path;
        proxy_hide_header jersey.response;
        proxy_hide_header http.request.path;
        proxy_hide_header http.status ;
    }

but it doesn't work. any clue?

Posted at Nginx Forum: 
http://forum.nginx.org/read.php?2,59880,59880#msg-59880
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.