Возникла такая проблема, поставил nginx, поставил php-fpm, при работе в логах никаких ошибок нет, однако же - вайт скрин и ничего другого, другими словами скрипты не тянутся попросту, реврайт не работает... код гинкса
server {
listen 80;
server_name restaurants.loc;
root /www/restaurants;
set $defpath 'public';
set $accpoint 'accesspoint.php';
index $accpoint;
# log_format main '$remote_addr - [$time_local] "$host" "$request" $status ($bytes_sent) "$http_referer" "$uri $args" [$request_time]';
# log_format main '$request_filename "$uri"';
access_log /www/restaurants/access.log combined;
error_log /www/restaurants/error.log;
rewrite_log on;
location ~ /(\.ht|cache|classes|system|systemutils|templates) {
deny all;
}
# Локальная отдача статики, без записи в лог
location ~* \.(jpeg|jpg|gif|png|css|less|js|ico)$ {
root /www/restaurants/;
access_log off;
expires 30d;
}
location ~ ^(/[^/]+) {
try_files $uri $1/$accpoint /$defpath/$accpoint =405;
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
location / {
try_files $uri /$defpath/$accpoint =405;
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
}
Подскажите, где туплю