Nginx 显示 404 未找到,没有错误日志

Nginx 显示 404 未找到,没有错误日志

我在 nginx 页面上收到 404 未找到,但在 nginx 错误日志文件中也没有收到任何错误。

server {
    listen 6269;
    server_name  (domain);
    root  /home/temp;
    index /_h5ai/public/index.php;
    location / {
        try_files $uri $uri/ =404;
        autoindex  on;
        autoindex_exact_size off;
        autoindex_localtime on;
     }

    location ~* \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass  unix:/var/run/php-fpm/www.sock;
    } 
}
  • error.log是空的
  • access.log 有:

X.0.X.190 - - [17/Nov/2018:21:50:57 +0000] "GET / HTTP/1.1" 404 571 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" "-"

  • 操作系统:Fedora 29

答案1

nginx 使用 的error默认日志级别error_log。如果出现 404 响应,此日志级别不会向错误日志输出任何内容,因为这些是 Web 服务器操作范围内的琐碎错误。

您可以尝试在指令中使用warnnoticeinfo来更改日志级别,例如:debugerror_log

error_log /var/log/nginx/error.log notice;

warn输出的信息比 稍微多一点errornotice比 稍微多一点warndebug产生最详细的输出。

根据您的配置,您需要有以下文件才能使GET /请求正常工作:

/home/temp/_h5ai/public/index.php

相关内容