nginx 中的方法请求

nginx 中的方法请求

我的 Nginx 在错误日志中报告

2012/07/24 13:00:16 [notice] 19056#0: *3275841 "^(GET|HEAD|POST)$" matches "GET", client: 42.114.191.177, server: _, request: "GET /template/images/loading.gif HTTP/1.1", host: "domain.com", referrer: "http://domain.com/"</code></pre>

在 nginx.conf 中

server {
    if ($request_method !~ ^(GET|HEAD|POST)$ ) {
        return 404;
    }
 }

我不知道为什么 nginx 在 error_log 中注意到了这一点

答案1

因为您的错误日志级别是noticeinfodebughttp://nginx.org/r/error_log

相关内容