码迷,mamicode.com
首页 > 其他好文 > 详细

NGINX 中文日志十六进制编码问题

时间:2018-11-26 19:58:24      阅读:1123      评论:0      收藏:0      [点我收藏+]

标签:for   大于   erer   题解   add   定义   十六进制   请求   cal   

Nginx访问日志在处理中文时,默认使用16进制编码处理。使我们对访问日志进行分析处理时,带来很大不便。含有中文字符的请求,日志记录如下:

171.43.238.62 - - [05/Dec/2017:21:40:57 +0800] "GET /\xD6\xD0\xCE\xC4 HTTP/1.1" 404 171 "-" "curl/7.56.0"

问题解决方案:

  1. nginx版本需大于1.11.8
  2. 在定义 access log 格式时,加上 escape=json

日志格式示例:

log_format  main escape=json ‘$remote_addr - $remote_user [$time_local] "$request" ‘
                            ‘$status $body_bytes_sent "$http_referer" ‘
                            ‘"$http_user_agent" "$http_x_forwarded_for"‘;

结果:

47.52.167.143 -  [05/Dec/2017:21:55:59 +0800] "GET /中文 HTTP/1.1" 404 171 "" "curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.27.1 zlib/1.2.3 libidn/1.18 libssh2/1.4.2" ""

NGINX 中文日志十六进制编码问题

标签:for   大于   erer   题解   add   定义   十六进制   请求   cal   

原文地址:http://blog.51cto.com/idweb/2322082

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!