ПРОЕКТЫ 


  АРХИВ 


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]

Magento конфиг


  • To: nginx-ru@xxxxxxxxx
  • Subject: Magento конфиг
  • From: Alexander <alexweb@xxxxxxxxx>
  • Date: Fri, 12 Jun 2009 18:33:33 +0300
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=lvVpWsUuT5YwDBv/9pDV+uX4RzawGSFizDpNPAGKyEQ=; b=FFLNi93YawkA+xhs6knqh/LP0ErHN8EyDu1FSJ7ncNXckMlf2FMM0BRS3yezmWbne+ cAKrJU1rW2kYx7S9thE6dzT2lmQiF5kIbbiDlhL2eu4hBlzRKVSWak1ks9ytAluP2GA4 dZPolNyGCVGLPuGuEzLeASTuh/JkSHLm/Xmns=
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :message-id; b=BjCZf5mHibtQXW9YQSTlooF5gsmQSPxcHpbG7YniJSRiwhKAnC2fiNJjj3ZzrCJ6IZ MYNPSifRSX3X2muy6TkzqyeeHQodsXxF93OVEZP0l2hFKUjDwqnSOMp5rGT/hlypbQ19 hrygPfIVigACFW3UlA3OISvJY4xK8jEpu/Vlk=
  • In-reply-to: <20090612141822.GA23651@xxxxxxxxxxxxxxxxx>
  • References: <4A30CCCB.3060700@xxxxxxxxxxxx> <20090611181436.GA30706@xxxxxxxxxxxxxxxxx> <20090612141822.GA23651@xxxxxxxxxxxxxxxxx>

Добрый вечер всем.


Итак, я снова возвращаюсь к вопросу настройки nginx и magento
Пока что у меня работает нормально главная страница. При попытке обратиться у урлу любого товара вылетает ошибка No input file specified.


В логах при этом следующее
2009/06/12 18:14:32 [error] 19531#0: *1 open() "/usr/local/nginx/html/Урл_Товара" failed (2: No such file or directory), client: 127.0.0.12, server: server.com, request: "GET /Урл_Товара HTTP/1.1", host: "server.com", referrer: "http://server.com/"


Почему-то nginx ищет в дефолтной папке, а должен делать редирект на index.php


Вот мой конфиг


server {
listen 127.0.0.12:80;
server_name server.com;


error_log /tmp/nginx.log debug;


location / {
index index.php;
error_page 404 = @magento;
}


location @magento {
include /etc/nginx/fastcgi_params;
root /home/alex/www/server.com/;
fastcgi_pass 127.0.0.12:8888;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/alex/www/server.com$fastcgi_script_name;
}


location ~* \.(jpg|gif|png|css)$ {
root /home/alex/www/server.com/;
access_log off;
expires 7d;
}

location ~* print.css$ {
root /home/alex/www/server.com/;
access_log off;
gzip on;
gzip_min_length 500;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/xml text/css;
expires 7d;
}

}






 




Copyright © Lexa Software, 1996-2009.