Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以停止 Nginx 记录 403 错误?
我正在使用指令:
error_log /var/www/error.log;
您可以使用log_not_found停止记录 404,但我看不到停止记录 403 的方法。
log_not_found
理论上,您可以指定一个命名位置来处理403和禁用那里的错误日志记录:
403
error_page 403 = @403_handler; location @403_handler { error_log /dev/null; }
但不一定是命名位置:
error_page 403 /403.html; location = /403.html { error_log /dev/null; }