| From | Sent On | Attachments |
|---|---|---|
| James Fidell | Aug 23, 2011 11:43 am | |
| Geoge.Q | Aug 23, 2011 10:26 pm | |
| Maxim Dounin | Aug 23, 2011 11:13 pm | |
| James Fidell | Aug 24, 2011 12:45 am | |
| James Fidell | Aug 24, 2011 12:52 am | |
| Igor Sysoev | Aug 24, 2011 3:37 am | |
| James Fidell | Aug 24, 2011 4:19 am | |
| Igor Sysoev | Aug 24, 2011 5:20 am | |
| Matthias R. W. | Sep 6, 2011 7:03 am |
| Subject: | Re: Content-Length header missing after proxying | |
|---|---|---|
| From: | Matthias R. W. (lis...@ruby-forum.com) | |
| Date: | Sep 6, 2011 7:03:50 am | |
| List: | ru.sysoev.nginx | |
Hello outside there,
I'm working on a corresponding issue To get clo...@node.js through an ssl-offload proxy I've set the following nginx configuration:
upstream nodejs3001 { server 127.0.0.1:3001; }
server { listen 127.0.0.1:84; server_name portal.domain.tld; access_log /var/log/nginx/customlogfile.log;
location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://nodejs3001; proxy_redirect off; } }
this is the last log-entry: 192.168.1.123 - admin [06/Sep/2011:15:28:37 +0200] "GET /socket.io/1/xhr-polling/1502126590706860217?t1315315712123 HTTP/1.1" 200 0 "http://127.0.0.1:84/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1"
and this is the content of the header regarding to get this last step: Request URL:http://127.0.01:84/socket.io/1/xhr-polling/1603386210380646057?t1315315788760 Request Headersview source Referer:http://127.0.0.1:84/ User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1 Query String Parametersview URL encoded
I think we'll have the most success here: https://github.com/ajaxorg/cloud9/issues/267
Tell me... Are you trying to do the same? µatthias
-- Posted via http://www.ruby-forum.com/.
_______________________________________________ nginx mailing list ngi...@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx





