Nginx 错误日志配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 错误日志配置相关的知识,希望对你有一定的参考价值。
语法:error_log file level ; # error_log 是关键字,file 是保存错误日志的文件路径,level 是错误日志级别
位置:错误日志可以配置在 Main 区块,也可以配置在虚拟主机配置文件中
日志级别:debug | info | notice | warn | error | crit | alert | emerg ,级别越高,记录的信息越少
[[email protected] conf]# vim nginx.conf
worker_processes 1; error_log logs/error.log error; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; include vhosts/*.conf; }
以上是关于Nginx 错误日志配置的主要内容,如果未能解决你的问题,请参考以下文章