Linux10.6 Nginx访问日志
Posted Learning Notes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux10.6 Nginx访问日志相关的知识,希望对你有一定的参考价值。
日志格式
vim /usr/local/nginx/conf/nginx.conf //搜索log_format
$remote_addr | 客户端IP(公网IP) |
$http_x_forwarded_for | 代理服务器的IP |
$time_local | 服务器本地时间 |
$host | 访问主机名(域名) |
$request_uri | 访问的url地址 |
$status | 状态码 |
$http_referer | referer |
$http_user_agent | user_agent |
主配置文件配置格式名为 combined_realip 格式的访问日志 log_format combined_realip ‘$remote_addr $http_x_forwarded_for [$time_local]‘ ‘ $host "$request_uri" $status‘ ‘ "$http_referer" "$http_user_agent"‘; 除了在主配置文件nginx.conf里定义日志格式外,还需要在虚拟主机配置文件中server块中增加,后面的combined_realip为日志格式名字,在主配置文件中配置 access_log /tmp/1.log combined_realip; 这里的combined_realip就是在nginx.conf中定义的日志格式名字 -t && -s reload curl -x127.0.0.1:80 test.com -I cat /tmp/1.log
以上是关于Linux10.6 Nginx访问日志的主要内容,如果未能解决你的问题,请参考以下文章
Linux脚本练习之script083-nginx日志分析之查询某个IP的详细访问情况
nginx日志,统计不同ip的访问,按访问量排列,用一条linux命令怎么写
Linux脚本练习之script082-nginx日志分析之统计访问3次以上的IP