Nginx初学日志的配置
Posted hg1205
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx初学日志的配置相关的知识,希望对你有一定的参考价值。
1、进入到nginx的日志目录,我们可以看到下图的三个文件
2、我们打开配置文件,可以设置自己的日志文件。如下,配置好后保存,重启nginx。
server { listen 8000; server_name www.wuaipic.cn; location / { root wuaipic; index index.html index.htm; } access_log logs/wuaipic.log main; }
注:其中 main就是定义的日志的格式
log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘ ‘$status $body_bytes_sent "$http_referer" ‘ ‘"$http_user_agent" "$http_x_forwarded_for"‘;
3、重启nginx后,我们在访问www.wuaipic.cn的时候就会创建一个wuaipic.log文件,并且里面记录了我们的访问日志。
下图为日志文件内容。
4、我们还可以监控实时日志。输入命令
tail -n 100 -f wuaipic.log
这样,我们就可以实时查看日志了,按ctrl+z退出日志查看。
5、到此,日志的配置就完成了,当我们配置多个server的时候,就可以配置多个日志文件进行区分了。
以上是关于Nginx初学日志的配置的主要内容,如果未能解决你的问题,请参考以下文章
python分析apache和nginx日志文件输出访客ip列表的代码
nginx.conf 忽略了 nginx-ingress 配置映射片段
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段