search for: proxy_buffers

Displaying 13 results from an estimated 13 matches for "proxy_buffers".

2016 Jul 27
2
Proxy
Hi all, I want to do a proxy to icecast (:8000) with nginx (:80). Its working for me, stream is running on port 80, but on the first loading is "pending" For a long time before its starts play. Who using the "proxy_pass" on nginx and can help? Thnx. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Jul 27
2
Proxy
Thank you all. Except from the buffering it was the fact that I used "localhost" instead of 127.0.0.1 in the proxy_pass. Now my configuration is: location /stream1/ { proxy_buffering off; proxy_ignore_client_abort off; proxy_intercept_errors on; proxy_next_upstream error timeout invalid_header;
2016 Jul 27
0
Proxy
We've tested this as working relatively well, disable buffering is the major key if I recall. Otherwise the NGINX server loads up data before handing off to the client. server { listen 80; server_name my_dns_name.tldn; location / { proxy_buffering off; proxy_ignore_client_abort off; proxy_intercept_errors on;
2019 Mar 13
5
Full HTTPS support
Hi! I've been giving support for streaming and streamcasting over HTTPS... Everything started while giving streaming support to my website. When I read a console error (or was it a warning?) on Chrome, when the browser accessed to an http:// resource from an https:// domain. Then I decided to fix it by the clean way. I don't need official support yet... but if you don't mind to
2011 Jun 25
3
Unicorn and streaming in Rails 3.1
...fer responses to slow clients, even with Rails 3.1 streaming because otherwise a slow client can become a bottleneck of Unicorn." If I understand how this works correctly, nginx buffers the entire response from Unicorn. First filling what''s configured in proxy_buffer_size and proxy_buffers, and then going to disk if needed as a last resort. Thus, even if the application streams, I believe the client will receive the chunked response, but only after it has been generated by the application and fully buffered by nginx. Which defeats the purpose of streaming in the use case we have in m...
2019 Mar 16
0
Fwd: Full HTTPS support
Sorry, I sent it individually. Didn't I? ---------- Forwarded message --------- From: Abel Romero <romeroperezabel at gmail.com> Date: Wed, Mar 13, 2019, 6:19 PM Subject: Re: [Icecast-dev] Full HTTPS support To: <listas at tangopardo.com.ar> Oh, that's a good solution! My predicament is complicated to explain :- ) The only I want to share is a full HTTPS solution for
2019 Mar 13
0
Full HTTPS support
Hi Abel, I'm not quite sure I understand your predicament here. We settled for using our main nginx with proxy_buffering off for the media files. That way certbot takes care of it too. Regards On Wed, 13 Mar 2019 at 13:36, Abel Romero <romeroperezabel at gmail.com> wrote: > > Hi! > > I've been giving support for streaming and streamcasting over HTTPS... > >
2007 Jun 23
3
mongrel_upload_progress and nginx
G''day I''m just wondering if anybody knows of a way to get mongrel_upload_progress working with nginx? I''ve had a fair bit of a look around but havn''t been able to come up with anything, yet. -- - James -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Sep 06
1
Workers getting broken after some time
I have strange error that happens after couple of hours. Some instances start to respond on any request with status code 500. Log file unicorn.stderr.log gets populated with this error: app error: undefined method `each'' for nil:NilClass (NoMethodError) /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.1.2/lib/rack/utils.rb:267:in `initialize''
2006 Dec 07
17
compress and max upload size?
I am using mongrel_cluster with mod_proxy_balancer and would like to enable compression (assuming it improves throughtput) and limit file size upload. I configured mod_deflate and LimitRequestSize in Apache, but in my trials looks like the proxied calls bypass those directives (the conf goes below). Is there a way to get this? -- fxn # Adapt this .example locally, as usual. # # To be
2013 Sep 23
0
400 bad request
..._redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; charset UTF-8; client_max_body_size 7m; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; } thanks for your help -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving em...
2011 Jul 08
2
Puppetmaster setup with separate CA server configuration help
...d_for; proxy_set_header X-Client-Verify $ssl_client_verify; proxy_set_header X-Client-DN $ssl_client_s_dn; proxy_set_header X-SSL-Subject $ssl_client_s_dn; proxy_set_header X-SSL-Issuer $ssl_client_i_dn; proxy_buffer_size 16k; proxy_buffers 8 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; proxy_read_timeout 65; location ^~ /production/certificate/ca { proxy_pass https://puppetca; } location ^~ /production/certificate { proxy_pa...
2013 Aug 20
14
A barrage of unexplained timeouts
We''ve been running unicorn-3.6.2 on REE 1.8.7 2011.12 in production for quite some time and we use monit to monitor each unicorn worker. Occasionally, I''ll get a notification that a worker has timed-out and has been re-spawned. In all these cases, when I look at the rails logs, I can see the last request that the worker handled, and they all have appeared to complete