Welcome! Log In Create A New Profile

Advanced

Re: Keep Alive piles up

Maxim Dounin
June 29, 2009 02:21PM
Hello!

On Mon, Jun 29, 2009 at 01:00:00PM -0400, meto wrote:

>
> server {
> listen 94.23.96.82:80;
> server_name gimpuj.info www.gimpuj.info
> gimpuj.org www.gimpuj.org
> gimpuj.net www.gimpuj.net;
>
> if ($host != www.gimpuj.info)
> {
> rewrite ^(.*)$ http://www.gimpuj.info$1 permanent;
> }
>
> access_log /var/www/vhosts/gimpuj.info/statistics/logs/access_log combined buffer=32k;
>
> location = / {
> rewrite / index.php?action=glowna permanent;
> }
>
> location / {
> index index.html index.php;
> root /var/www/vhosts/gimpuj.info/httpdocs;
> include php_support;
>
> if ( !-e $request_filename ) {
> # rewrites
> rewrite ^/avatar/(.*)\.png /avatar/index.php?user=$1 last;
> ....
> some rewrites
> ....
> rewrite ^/index\.php/(.*) /index.php?$1;
> # end rewrites
> }

I was able to reproduce coredump with the following reduced
config:

location / {

set $true 1;

if ($true) {
# fastcgi_pass here
fastcgi_pass 127.0.0.1:9000;
}

if ($true) {
# no handler here
}

# and no handler here
}

It does happily coredumps on 0.7.59 though. Just for completeness
I've tested 0.7.0 - it coredumps too. No idea why 0.7.59 works
for you.

The problem is that first matching if() installs fastcgi handler
for request, while actual processing takes place in context of
last matching if() (second in the example) and there is no
required fastcgi configs in this context.

Fix is to explicitly use break in if with fastcgi_pass to avoid
further rewrite processing, i.e.:

location / {

set $true 1;

if ($true) {
# fastcgi_pass here
fastcgi_pass 127.0.0.1:9000;

# break to avoid coredump
break;
}

if ($true) {
# no handler here
}

# and no handler here
}

It's not clear for me how to fix code without breaking
more-or-less correct configs using if's, so probably it's a good
idea to wait for Igor's return from vacation.

> }
>
>
> # PLESK statistics below
> location ^~ /plesk-stat/ {
> autoindex on;
> alias /var/www/vhosts/gimpuj.info/statistics/;
> }
> # End of PLESK statistics
>
> include settings;
> }
>
> every domain is built with such config template
>
> php_support
>
> #php support
> if ( $request_filename ~* \.php(.*)$ ) { # is it php?
> fastcgi_pass 127.0.0.1:9000;
> expires off;
> }
>
> fastcgi_index index.php;
> fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
> include fastcgi_params;
>
>
> settings
>
> #limit conns for ddos and slowloris
> limit_conn limit_per_ip 25;
>
> #errors
> error_page 404 /errors_pages/404.html;
>
> location ^~ /errors_pages {
> alias /var/www/errors_pages;
> }
>
>
> #Phpmyadmin
>
> location ^~ /phpmyadmin {
> index index.php;
> root /usr/share;
> include php_support2;
> }
>
> #xcache-admin
>
> location ^~ /xcache-admin {
> index index.php;
> alias /usr/share/xcache/admin;
> #root /usr/share/xcache/admin;
> include php_support2;
> fastcgi_param SCRIPT_FILENAME $request_filename;
> }
> # AW-Stat Icons
> location ^~ /awstats-icon/ {
> alias /usr/share/awstats/icon/;
> }
>
> # deny access to .htaccess files, if Apache's document root
> # concurs with nginx's one
> location ~ /\.ht {
> deny all;
> }
>
>
> php_support2 is same as php_support but passes queries only to local PHP.
>
> Here you have it. As I said nothing special here.
>
> >Using if() on $request_uri/$request_filename suggests that config
> >should be rewritten, but anyway nginx shouldn't coredump.
>
> Why? I know that if is in rewrite module in docs but can't we use it in other places?

Basically, if()'s are evil. Mostly due to the fact that nginx
configuration are declarative while if's are imperative - and this
produces some nasty implementation details as in your problem.

In most situations it's a good idea to avoid if's. And test for
$request_uri/$request_filename means you can do so using
appropriate [regex] locations.

> Do you suggest to use nested location rather than if() in that case? But still (and dont yell) - it worked before.

Yes, separate normal locations or nested ones is the way to go.

Maxim Dounin
Subject Author Posted

Keep Alive piles up

meto June 25, 2009 10:07AM

Re: Keep Alive piles up

Maxim Dounin June 25, 2009 12:33PM

Re: Keep Alive piles up

meto June 25, 2009 03:49PM

Re: Keep Alive piles up

Maxim Dounin June 25, 2009 05:10PM

Re: Keep Alive piles up

meto June 25, 2009 06:25PM

Re: Keep Alive piles up

Maxim Dounin June 25, 2009 07:47PM

Re: Keep Alive piles up

meto June 26, 2009 02:00AM

Re: Keep Alive piles up

meto June 26, 2009 08:02AM

Re: Keep Alive piles up

meto June 26, 2009 09:06AM

Re: Keep Alive piles up

Grzegorz Nosek June 26, 2009 09:19AM

Re: Keep Alive piles up

meto June 26, 2009 09:53AM

Re: Keep Alive piles up

Grzegorz Nosek June 26, 2009 10:17AM

Re: Keep Alive piles up

meto June 26, 2009 10:43AM

Re: Keep Alive piles up

meto June 26, 2009 01:17PM

Re: Keep Alive piles up

Grzegorz Nosek June 26, 2009 02:03PM

Re: Keep Alive piles up

meto June 26, 2009 02:42PM

Re: Keep Alive piles up

meto June 26, 2009 03:03PM

Re: Keep Alive piles up

meto June 26, 2009 03:54PM

Re: Keep Alive piles up

Grzegorz Nosek June 26, 2009 04:04PM

Re: Keep Alive piles up

meto June 26, 2009 06:10PM

Re: Keep Alive piles up

meto June 26, 2009 06:29PM

Re: Keep Alive piles up

Grzegorz Nosek June 27, 2009 04:23AM

Re: Keep Alive piles up

meto June 27, 2009 06:02AM

Re: Keep Alive piles up

Grzegorz Nosek June 27, 2009 06:50AM

Re: Keep Alive piles up

meto June 27, 2009 07:34AM

Re: Keep Alive piles up

meto June 27, 2009 07:40AM

Re: Keep Alive piles up

meto June 27, 2009 08:48AM

Re: Keep Alive piles up

Tomasz Pajor June 28, 2009 03:58AM

Re: Keep Alive piles up

meto June 28, 2009 05:29AM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 06:38AM

Re: Keep Alive piles up

meto June 29, 2009 09:43AM

Re: Keep Alive piles up

meto June 29, 2009 10:18AM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 11:55AM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 10:46AM

Re: Keep Alive piles up

meto June 29, 2009 11:32AM

Re: Keep Alive piles up

meto June 29, 2009 11:34AM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 12:10PM

Re: Keep Alive piles up

meto June 29, 2009 01:00PM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 02:21PM

Re: Keep Alive piles up

meto June 29, 2009 03:27PM

Re: Keep Alive piles up

Maxim Dounin June 29, 2009 04:18PM

Re: Keep Alive piles up

Toni Mueller July 16, 2009 05:55AM

Re: Keep Alive piles up

Maxim Dounin July 16, 2009 12:20PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 297
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready