Продолжайте получать пустую страницу suitecrm - Nginx - Ubuntu 14.04

Это мой сайт.conf файл:

server {

listen      [::]:80;

listen      80;

root /usr/share/nginx/html/suitecrm/;
index index.php index.html index.htm;

access_log   /var/log/nginx/suitecrmaccess.log;
error_log    /var/log/nginx/suitecrmerror.log error;

# Block access to stuff in the root
location ~* \.(pl|cgi|py|sh|lua|log|md5)$ {
    return 444;
}

# Block access to data folders
location ~ /(soap|cache|upload|xtemplate|data|examples|include|log4php|metadata|modules|diagnostic|blowfish|emailmandelivery)/.*\.(php|pl|py|jsp|asp|sh|cgi|tpl|log|md5)$ {
return 444;
}

location / {
try_files $uri $uri/ =404;
index index.html index.htm index.php;
}

location ~ \.php$ {
    try_files $uri =404;
    include /etc/nginx/fastcgi_params;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    }
}

Пути верны, я не понимаю, что здесь может быть не так, есть идеи, пожалуйста?

1 ответ

Вы смотрели на файл suitecrm.log, чтобы увидеть, что он говорит?

Другие вопросы по тегам