尝试在我的LEMP堆栈上设置Magento2。遵循说明here和here(在compiling from sources之后多次执行此操作,因为很难满足Magento2的作曲家要求)
php
,php-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
(仅限测试用途),user
和group
为www-data
。能够运行.php
脚本,问题适用于Magento2。
还阅读一些相关问题(没有任何积极结果):
答案 0 :(得分:0)
以上查询不完整nginx配置。 请使用以下链接配置nginx。