44 messages in ru.sysoev.nginxRe: Weird timeouts, not sure if I've ...
FromSent OnAttachments
mikeApr 30, 2008 9:36 pm 
Igor SysoevApr 30, 2008 9:54 pm 
mikeApr 30, 2008 10:07 pm 
Igor SysoevApr 30, 2008 10:12 pm 
mikeApr 30, 2008 10:25 pm 
Igor SysoevApr 30, 2008 10:29 pm 
mikeApr 30, 2008 10:37 pm 
Igor SysoevApr 30, 2008 10:40 pm 
mikeApr 30, 2008 10:53 pm 
Igor SysoevApr 30, 2008 11:01 pm 
mikeApr 30, 2008 11:26 pm 
Igor SysoevApr 30, 2008 11:43 pm 
mikeApr 30, 2008 11:55 pm 
Igor SysoevMay 1, 2008 12:02 am 
mikeMay 2, 2008 12:40 am 
mikeMay 2, 2008 1:26 am 
mikeMay 2, 2008 1:27 am 
Dave CheneyMay 2, 2008 5:46 am 
mikeMay 2, 2008 10:21 am 
Igor SysoevMay 2, 2008 10:35 am 
Igor SysoevMay 2, 2008 10:37 am 
mikeMay 2, 2008 11:22 am 
Cliff WellsMay 2, 2008 12:39 pm 
mikeMay 2, 2008 12:45 pm 
Cliff WellsMay 2, 2008 1:04 pm 
mikeMay 2, 2008 1:33 pm 
Denis S. FilimonovMay 2, 2008 1:43 pm 
mikeMay 2, 2008 1:52 pm 
Denis S. FilimonovMay 2, 2008 2:16 pm 
Cliff WellsMay 2, 2008 4:56 pm 
Rob MuellerMay 2, 2008 6:13 pm 
Denis S. FilimonovMay 2, 2008 7:35 pm 
mikeMay 2, 2008 8:16 pm 
Dave CheneyMay 2, 2008 9:54 pm 
Igor SysoevMay 2, 2008 10:51 pm 
Igor SysoevMay 2, 2008 11:04 pm 
Igor SysoevMay 2, 2008 11:24 pm 
mikeMay 2, 2008 11:35 pm 
Igor SysoevMay 2, 2008 11:39 pm 
Denis S. FilimonovMay 3, 2008 12:13 am 
Denis S. FilimonovMay 3, 2008 12:14 am 
Igor SysoevMay 3, 2008 2:04 am 
Andrew DeasonMay 3, 2008 3:41 pm 
mikeMay 3, 2008 4:19 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Weird timeouts, not sure if I've set the right threshholdsActions...
From:mike (mike@public.gmane.org)
Date:Apr 30, 2008 10:37:00 pm
List:ru.sysoev.nginx

On 4/30/08, Igor Sysoev <is-G@public.gmane.org> wrote:

On Wed, Apr 30, 2008 at 09:37:09PM -0700, mike wrote:

location ~ .php {

BTW, this regex should be:

location ~ \.php$ {

I originally had that. The problem is some of my apps do a rewrite from

foo.com/bar/baz -> foo.com/index.php/bar/baz

In which case, FastCGI won't be executed because php$ is not matched. I had to remove the restriction on it ending with PHP for that. (Yes, nowadays I know better, but I can't change those apps right now)

I could at least add in that \ before the period though, I suppose.