搜尋

首頁  >  問答  >  主體

laravel - nginx+php7設定虛擬主機無法存取

nginx+php7設定虛擬主機無法存取到我的laravel項目,存取頁面一直報500錯誤碼
我的設定:

server {
    listen 80;
    listen [::]:80;

    server_name demo.cn;

    root /var/www/laravel-blog/public;
    index index.php index.html index.htm;

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

    location ~ \.php$ {        
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
        }
}
伊谢尔伦伊谢尔伦2772 天前633

全部回覆(2)我來回復

  • PHP中文网

    PHP中文网2017-05-16 16:53:52

    教學很清楚:https://laravist.com/series/d...

    回覆
    0
  • ringa_lee

    ringa_lee2017-05-16 16:53:52

    試查看你nginx的error.log日誌檔。

    回覆
    0
  • 取消回覆