search for: proxy_buffer_size

Displaying 3 results from an estimated 3 matches for "proxy_buffer_size".

2011 Jun 25
3
Unicorn and streaming in Rails 3.1
...ally want nginx to buffer 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...
2013 Sep 23
0
400 bad request
...proxy_pass http://gancx; proxy_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 fr...
2011 Jul 08
2
Puppetmaster setup with separate CA server configuration help
...arded-For $proxy_add_x_forwarded_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...