我正在运行一个使用流浪汉和Ubuntu,NGINX和php-fpm的laravel网站,一切正常我的网站,直到它没有..我得到典型的“无输入文件指定”错误,唯一的是它是随机的。如果我等待一段时间或继续发送请求,它最终会清理。
这是我的配置:
server {
listen 80;
server_name site.dev;
root /var/www/site.dev/public;
location / {
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
#root html;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}