ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Разные CMS с разными rewrite rules в директориях одного домена


  • To: nginx-ru@xxxxxxxxx
  • Subject: Re: Разные CMS с разными rewrite rules в директориях одного домена
  • From: "Vilgelm" <nginx-forum@xxxxxxxx>
  • Date: Thu, 13 Sep 2012 17:45:02 -0400
  • Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=SE0zt3pvtxbthOy4UCS1x/lrhh6PIiKg8itOfz/34/U=; b=FBgXqPSE3vQQ2OFAZI5H/ogY6XMqEnHbjwgigtynkTSRr8Kt2gAYsJlK8aKY0fOy65tG/RfF26Umq/kLEr/6OxiDBZSK0h3FQazbSegZYZhhIm4pMYrjNOwgVCHAOPHl;
  • In-reply-to: <50520876.40006@itcraft.org>
  • References: <50520876.40006@itcraft.org>

Доброй ночи.

Спасибо за ответ.

Сейчас конфиг выглядит так, проблема не устранена:

server {
        listen 80;
        server_name www.domain.ru domain.ru;
        server_name_in_redirect off;
      
        error_log /var/log/nginx/domain.error_log;

        root /var/www/vhosts/domain/domain.ru/httpdocs;
        index index.php;
        # Support Clean (aka Search Engine Friendly) URLs
        location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;  #rewrite для
Joomla
        }

        index index.php index.html index.htm default.html default.htm;
        # deny running scripts inside writable directories
        location ~*
/(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
                return 403;
                error_page 403 /403_error.html;
        }

        location ~ .*.php$ { #Обработчик для Joomla
root /var/www/vhosts/domain/domain.ru/httpdocs;
            include /etc/nginx/fastcgi.conf;
            fastcgi_pass  127.0.0.1:9000;
#            fastcgi_index index.php;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name;
        }

        # caching of files 
        location ~* \.(ico|pdf|flv)$ {
                expires 1y;
        }

        location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {
                expires 14d;
        }

location ^~/mir/ { #папка с Livestreet
#try_files $uri $uri/ /index.php?q=$uri&$args; #один из вариантов rewrite
if (!-e $request_filename) { #rewrite как в примере
rewrite ^(/.*)$ /index.php?q=$1 last;
break;
}
#root /var/www/vhosts/domain/domain.ru/mir; #если разкомментировать, не
попаду даже на главную страницу Livestreet, будет сразу 404 от Joomla
location ~ \.php$ { #Обработчик для Livestreet
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/var/www/vhosts/domain/domain.ru/httpdocs$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT /var/www/vhosts/domain/domain.ru/httpdocs;
include fastcgi_params;
}
}


}

Не подскажите, в чем может быть проблема?

Заранее огромное спасибо!

Posted at Nginx Forum: 
http://forum.nginx.org/read.php?21,230695,230713#msg-230713

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.