1.4.1 SPDY error FIXME: chain too big in spdy filter

2013-05-28 Thread Mike
Hi, Running 1.4.1 and using SPDY and SSL extensively (exclusively, actually). Seeing a ton (thousands) of errors in the error log, similar to: 2013/05/29 00:22:53 [alert] 25981#0: *8781732 FIXME: chain too big in spdy filter: 25516336 while sending to client, client: x.x.x.x, server:

Re: Error message: invalid number of arguments in "proxy_pass" directive ...

2013-05-28 Thread Francis Daly
On Tue, May 28, 2013 at 02:35:33PM -0400, ZyntraX wrote: Hi there, > He keeps giving met this error: > [emerg] invalid number of arguments in "proxy_pass" directive in > /etc/nginx/sites-enabled/default.save:35 What is on line 35 of the file /etc/nginx/sites-enabled/default.save? How does that

Error message: invalid number of arguments in "proxy_pass" directive ...

2013-05-28 Thread ZyntraX
Hello guys I'm using nginx as a load balancer between 2 apache webservers for a school assignment, but i can't get it working. My nginx server (running on ubuntu server) won't start... He keeps giving met this error: [emerg] invalid number of arguments in "proxy_pass" directive in /etc/nginx/site

Re: fastcgi_read_timeout with PHP backend

2013-05-28 Thread B.R.
Hello Maxim, I spent a lot of time trying to figure out what is happening. It seems that after some service restart, the problem sometimes disappear before coming back again on the following try. I finally managed to capture the debug log you'll find as attachment. I'll need your expertise on it,

Re: safe to call ngx_http_subrequest inside location handler?

2013-05-28 Thread jesse
I see. Thanks, Maxim! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,239619,239635#msg-239635 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: 404 on Prestashop 1.5 under nginx

2013-05-28 Thread tonimarmol
The problem is solved. The issue was on Prestashop. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,239630,239633#msg-239633 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: safe to call ngx_http_subrequest inside location handler?

2013-05-28 Thread Maxim Dounin
Hello! On Tue, May 28, 2013 at 04:03:07AM -0400, jesse wrote: > Hello, > > So according to evan miller's tutorial and nginx's own source code, it seems > only filters can send subrequests. But I have tried to call > ngx_http_subrequest inside my location handler, and everything seems working > f

404 on Prestashop 1.5 under nginx

2013-05-28 Thread tonimarmol
I have a problem with nginx giving a 404 error on a Prestashop 1.5.4.1 site. This is the URL returning the 404: www.domain.com/es/index.php?controller=order-confirmation The prestashop is under multilanguage enviroment. Then I have: www.domain.com/en/ www.domain.com/es/ www.domain.com/fr/ www.do

Re: nginx 1.4.1 + 'gzip on' causes download of file instead of displaying it in browser

2013-05-28 Thread Maxim Dounin
Hello! On Tue, May 28, 2013 at 04:52:14AM -0400, gadh wrote: > i found the bug - the web server returned in "Content-Type" header just > "text/html" and not added "charset=UTF-8". > why text/html is not enough ? For nginx, there should be no difference. But it looks like you are debugging comp

Re: Debian 7

2013-05-28 Thread Maxim Konovalov
On 5/14/13 3:27 PM, David Geistert wrote: > Hey, > I only want to ask, when the Debian Wheezy package will be released > in http://nginx.org/packages/debian/ > As a follow-up: http://mailman.nginx.org/pipermail/nginx/2013-May/039096.html http://nginx.org/en/linux_packages.html -- Maxim Konovalov

Re: nginx 1.4.1 + 'gzip on' causes download of file instead of displaying it in browser

2013-05-28 Thread gadh
i found the bug - the web server returned in "Content-Type" header just "text/html" and not added "charset=UTF-8". why text/html is not enough ? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,239608,239622#msg-239622 ___ nginx mailing list ng

Re: How to convert Lighttpd rewrite to NGinx rewrite

2013-05-28 Thread Jonathan Matthews
I don't believe you need to escape your backslashes like you're doing, though I'm not sure that's you actual problem. It would help if you gave some more detail about what "not working" looks like. How are you testing? What do you see? Etc etc. Cheers, Jonathan -- Jonathan Matthews // Oxford, Lon

How to convert Lighttpd rewrite to NGinx rewrite

2013-05-28 Thread Mr.Kingcasino
Hi All, I have a problem in convert Lighttpd rules to Nginx rewrite This is my Lighttpd rules "^/pthumb/([^\/]+)\/(.+)$" => "/pthumb/index.php?$1&f=$2" And this is Nginx Rewrite converted from above Lighttpd rules rewrite ^/pthumb/([^\/]+)\/(.+)$ /pthumb/index.php?$1&f=$2 But is not work.It v

safe to call ngx_http_subrequest inside location handler?

2013-05-28 Thread jesse
Hello, So according to evan miller's tutorial and nginx's own source code, it seems only filters can send subrequests. But I have tried to call ngx_http_subrequest inside my location handler, and everything seems working fine. I am using version 1.2.8. Just want to ask and see if it's safe to do