简体   繁体   中英

LEMP - Magento displays blank page

Trying to setup Magento2 on my LEMP stack. Was following the instructions here and here (did that after compiling from sources for multiple time since it was hard to fulfill composer requirements for Magento2)

  • Installed composer
  • Configured and run php , php-fpm
  • Did some trivial tests (success)

However, a blank screen is all I get. The nginx configuration

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;

    }
}

The permission set is to -R 777 (test purpose only), user and group is www-data . Was able to run .php scripts, problem applies to Magento2.

Read also some related issues (without any positive results) :

The above query is incomplete the nginx configuration. Please use the below link configuration of nginx.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM