问题描述:
启动 nginx 后可以正常访问,数小时后访问就 404,No input file specified. access log 里面只有 404 的 log,没有任何错误 log
是哪里的问题呢?请教各位大神了。配置参考 https://yii.im/posts/the-right-way-to-set-nginx-for-laravel/
配置如下:
index index.html index.htm index.php;
root /apps/www/lavarel_test/public/;
access_log logs/laravel_test.log;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
#client_max_body_size 5m;
include fastcgi_params;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
1
czoi OP 没人么
|
2
HuasLeung 2019-06-21 15:52:47 +08:00
老哥这个问题解决没?这两天用 nginx 部署 laravel 也出现这个问题,试了网上的方法都不行 QAQ
|
3
czoi OP |