search for: proxy_read_timeout

Displaying 7 results from an estimated 7 matches for "proxy_read_timeout".

2007 Aug 15
1
Nginx/Mongrel proxy_read_timeout issue
This may be a nginx issue more than a mongrel one but I though folks in this list might be interested. Anyway, I have a mongrel_cluster with 2 front nginx workers as proxy. I recently replaced apache/mod_proxy for nginx, and I wasn''t aware of the 60 seconds default proxy_read_timeout so I went a head and tried to run a process via http GET. Normally because of the 60 seconds the GET I did from the browser should have stopped but it kept running. Checking the database i noticed that my process was running multiple times!. Looking at the nginx error logs below, I noticed that ng...
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
...error timeout invalid_header; proxy_redirect off; proxy_set_header X-Host $http_host; proxy_set_header X-Forwarded-For $remote_addr; proxy_connect_timeout 60; proxy_send_timeout 21600; proxy_read_timeout 21600; proxy_pass http://127.0.0.1:8000/stream1; } location /stream2/ { proxy_buffering off; proxy_ignore_client_abort off; proxy_intercept_errors on; proxy_next_upstream error timeout invalid_h...
2016 Jul 27
0
Proxy
...error timeout invalid_header; proxy_redirect off; proxy_set_header X-Host $http_host; proxy_set_header X-Forwarded-For $remote_addr; proxy_connect_timeout 60; proxy_send_timeout 21600; proxy_read_timeout 21600; proxy_pass http://my_dns_name.tldn:8010; } } More information about said directive can be found here: http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffering Jesse From: Icecast-dev [mailto:icecast-dev-bounces at xiph.org] On Behal...
2011 Mar 14
1
slight security problem
...X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Client-Verify SUCCESS; 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_read_timeout 65; location / { proxy_pass http://puppet-production; } } </code> and here is how i start puppetmasterd: /usr/bin/thin start -P /var/run/puppet/$ROLE_NAME.pid -e production -- servers 5 --daemonize --socket /var/run/puppet/$ROLE_NAME.sock -- chdir /etc/p...
2009 Jul 21
2
Toward a simple Nginx configuration for Puppet Mongrel
...t_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Client-Verify $ssl_client_verify; proxy_set_header X-SSL-Subject $ssl_client_s_dn; proxy_set_header X-SSL-Issuer $ssl_client_i_dn; proxy_read_timeout 65; } } I really hope those patches could be merged in the official Nginx distribution, meanwhile it is easy to patch and build your own nginx (or package of). Please see the following blog post for more information and access to those patches: http://www.masterzen.fr/2009/07/21/new-ssl-fe...
2011 Jul 08
2
Puppetmaster setup with separate CA server configuration help
...$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_pass https://puppetca; } location ^~ /production/certificate_revocation_list/ca { proxy_p...