我正在使用它的教程学习 Laravel。我使用LaraDock安装了 Laravel 和所需的堆栈。
当我转到运行应用程序的 IP 时,Nginx 返回 File not found。下面是我的 NGINX 配置。
server {
root /var/www/laravel/public/;
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_pass php-upstream;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
这是来自 NGINX 错误日志的错误。
2016/08/19 08:53:06 [错误] 47#47: *16 FastCGI 在 stderr 中发送:“主要脚本未知”同时从上游读取响应标头,客户端:192.168.99.1,服务器:,请求:“GET / HTTP/1.1”,上游:“fastcgi://111.13.0.5:9000”,主机:“192.168.99.100”