Re: handling x_forwarded_proto with Nginx as backend to HAproxy

2013-04-15 Thread jaychris
Thanks! Setting "underscores_in_headers on;" fixed the issue and X_FORWARDED_PROTO is being carried forward now. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,238384,238387#msg-238387 ___ nginx mailing list nginx@nginx.org http://mailman.ng

handling x_forwarded_proto with Nginx as backend to HAproxy

2013-04-15 Thread jaychris
Running Nginx 1.2.7 behind HAproxy, with SSL being terminated on on HAproxy. I was using the X_FORWARDED_PROTO header to make some decisions on the backend when I was using Apache, but it doesn't look like Nginx is handling the header currently: client sent invalid header line: "X_FORWARDED_PROTO

Re: RE: Nginx 1.2.7 / h.264 / flowplayer

2013-03-15 Thread jaychris
Well, true, but .mov is still h.264 encoded, so I believe it would still use the same streaming mechanism. Maybe I'm wrong about that. At any rate, it appears to be working now that I fixed my nginx location filters. Lukas Tribus Wrote: --- > .

Re: Nginx 1.2.7 / h.264 / flowplayer

2013-03-15 Thread jaychris
Once again, never mind. I had a bad location filter. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,237411,237415#msg-237415 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Nginx 1.2.7 / h.264 / flowplayer

2013-03-15 Thread jaychris
I'm running Nginx v1.2.7 from the Nginx repo, with mp4 module enabled. I added this to my conf: location ~ \.mov { mp4; mp4_buffer_size 1m; mp4_max_buffer_size 5m; } location / { try_files $uri $uri/ @rewrite;

Re: nginx_upload_progress

2013-03-15 Thread jaychris
Never mind, I guess there are two configure statements in the spec file. I added the module to both and it's working fine. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,237384,237409#msg-237409 ___ nginx mailing list nginx@nginx.org http://

nginx_upload_progress

2013-03-14 Thread jaychris
I'm trying to compile in the nginx_upload_progress module into an RPM. I'm using the SPEC file provided with v1.2.7 from the Nginx repos. I downloaded the upload_progress module, opened up the source tar archive, copied the module to nginx-1.2.7/nginx-upload-progress-module, and added this line t