nginx File not found 错误
程序员文章站
2023-12-25 09:38:57
...
使用php-fpm解析PHP,"No input file specified","File not found"是常见错误,原因是php-fpm进程找不到SCRIPT_FILENAME配置的要执行的.php文件,php-fpm返回给nginx的默认404错误提示。
出现这类错误,十个有九个是后端fastcgi进程收到错误路径(SCRIPT_FILENAME),而后端fastcgi收到错误路径的原因大都是配置错误。
可以参考我的nginx.conf的配置:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name qanme.thenoob.top;
#charset koi8-r;
#access_log logs/host.access.log main;
#这里配置存放网站代码的路径
location / {
root /var/www/web;
index index.html index.htm index.php;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#输入网址是下载文件多半是下面一行的错误
fastcgi_param SCRIPT_FILENAME /var/www/web$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
推荐阅读
-
nginx File not found 错误
-
Latex&TeXstudio运行错误File `beamerthemeTianQing.sty‘ not found. \usetheme{TianQing}
-
`LaTeX` Debug笔记之 - `File ' ' not found` (`\includegraphics`)
-
将PHP从5.3.28升级到5.3.29时Nginx出现502错误,5.3.29nginx
-
MySQL 启动报错:File ./mysql-bin.index not found (Errcode: 13)_MySQL
-
Nginx服务器中配置404错误页面时一些值得注意的地方
-
django+uwsgi+nginx - 错误:nginx:504 Gateway Time out
-
nginx+fastcgi php 使用file_get_contents、curl、fopen读取
-
CodeIgniter错误mysql_connect(): No such file or directory解决方法_php实例
-
nginx 错误记录 nginx apache nginx php nginx rewrite