Привет всем! Купил домен, настроил у него ДНСы, настроил конфиг Nginx в sites-available, сделал симлинк в sites-enabled
server {
listen 127.0.0.1:80;
listen 142.251.184.105:80;
server_name site.ru;
root /home/land_user/project/site_ru/public_html;
access_log /home/land_user/project/site_ru/logs/access.log;
error_log /home/land_user/project/site_ru/logs/error.log;
allow 142.251.184.105;
location / {
index index.php index.html; ## Allow a static html file to be shown first
try_files $uri $uri/ /$uri/index.html #@handler; ## If missing pass the URI to Magento's front handler
expires 30d; ## Assume all files are cachable
}
location ~* \.(ico|gif|jpeg|jpg|png|eot|ttf|swf|woff|svg)$ {
limit_conn slimits 20;
expires 30d;
access_log off;
}
location ~ .php/ {
## Forward paths like /js/index.php/x.js to relevant handler
rewrite ^(.*.php)/ $1 last;
}
location ~* \.(css|js)$ {
limit_conn slimits 20;
expires 7d;
access_log off;
}
location /. { ## Disable .htaccess and other hidden files
return 404;
}
set $php_value "$php_value \n error_log=/home/land_user/project/site_ru/logs/php.log";
# This includes global php configuration
# It has to be included to each php location
include /etc/nginx/magento/php5-fcgi-magento-live.conf;
# include /etc/nginx/phpmyadmin;
}
После сервер ребутнул, но не работает сайт, что я не так сделал? может что-то еще настроить нужно было?
Спасибо.