LEMP - Magento显示空白页面

时间:2015-05-25 09:52:56

标签: php linux magento nginx magento2

尝试在我的LEMP堆栈上设置Magento2。遵循说明herehere(在compiling from sources之后多次执行此操作,因为很难满足Magento2的作曲家要求)

  • 已安装的作曲家
  • 已配置并运行phpphp-fpm
  • 做了一些微不足道的测试(成功)

然而,我得到的是一个空白屏幕。 nginx配置

server {
    listen   2000;

    root /usr/share/nginx/html/magento2;
    index index.php;

    location / {
            try_files $uri $uri/ /index.php;
    }

    location ~ \.php$ {

    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param           SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param           SCRIPT_NAME $fastcgi_script_name;
    include fastcgi_params;

    }
}

权限集为-R 777(仅限测试用途),usergroupwww-data。能够运行.php脚本,问题适用于Magento2。

还阅读一些相关问题(没有任何积极结果):

1 个答案:

答案 0 :(得分:0)

以上查询不完整nginx配置。 请使用以下链接配置nginx。

http://gotechnies.com/magento2-lemp-nginx-ubuntu/