为了账号安全,请及时绑定邮箱和手机立即绑定

Nginx访问日志配置

标签:
Docker

Nginx 访问日志介绍

Nginx会把每个用户访问服务的日志信息记录到指定的日志文件中,以方便管理员分析浏览用户行为,该功能由ngx_http_log_module模块负责

  • 访问日志参数

    log_format : 用来定义记录日志的格式(可定义多种日志格式,通过名称区别)
    access_log : 用来指定日志文件路径及使用记录日志文件的格式

  • log_format 默认值

    log_format  combined  '$remote_addr - $remote_user  [$time_local]  '
                           ' "$request"  $status  $body_bytes_sent  '
                           ' "$http_referer"  "$http_user_agent" ';
  • access_log 默认值

    access_log logs/access.log     main;

  • log_format 语法格式及参数说明

    log_format    <NAME>    <Strin­­­g>;
    关键字         格式标签   日志格式

    • 关键字:其中关键字error_log不能改变

    • 格式标签:格式标签是给一套日志格式设置一个独特的名字

    • 日志格式:给日志设置格式

  • log_format格式变量:

    语法描述
    $remote_addr记录访问网站的客户端地址
    $remote_user远程客户端用户名
    $time_local记录访问时间与时区
    $request用户的http请求起始行信息
    $statushttp状态码,记录请求返回的状态码,例如:200、301、404等
    $body_bytes_sent服务器发送给客户端的响应body字节数
    $http_referer记录此次请求是从哪个连接访问过来的,可以根据该参数进行防盗链设置。
    $http_user_agent记录客户端访问信息,例如:浏览器、手机客户端等
    $http_x_forwarded_for当前端有代理服务器时,设置web节点记录客户端地址的配置,此参数生效的前提是代理服务器也要进行相关的x_forwarded_for设置
  • access_log语法格式及参数语法说明

    access_log    <FILE>    <NAME>;
    关键字         日志文件   格式标签

    • 关键字:其中关键字error_log不能改变

    • 日志文件:可以指定任意存放日志的目录

    • 格式标签:给日志文件套用指定的日志格式

  • 其他语法:

    语法参数选项
    access_logoff;  #关闭access_log,即不记录访问日志
    access_logpath [format [buffer=size [flush=time]] [if=condition]];
    access_logpath format gzip[=level] [buffer=size] [flush=time] [if=condition];
    access_logsyslog:server=address[,parameter=value] [format [if=condition]];
     参数释义
      - buffer=size  #为存放访问日志的缓冲区大小
      - flush=time  #为缓冲区的日志刷到磁盘的时间
      - gzip[=level]  #表示压缩级别
      - [if = condition]  #表示其他条件

    lof_format参数的标签段位置:http
    access_log参数的标签段位置:http, server, location, if in location, limit_except

Nginx 访问日志实例

```
http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                                        '"$status" $body_bytes_sent "$http_referer" '
                                        '"$http_user_agent" "$http_x_forwarded_for" '
                                        '"$gzip_ratio" $request_time $bytes_sent $request_length';
    log_format srcache_log '$remote_addr - $remote_user [$time_local] "$request" '
                                '"$status" $body_bytes_sent $request_time $bytes_sent $request_length '
                                '[$upstream_response_time] [$srcache_fetch_status] [$srcache_store_status] [$srcache_expire]';
    open_log_file_cache max=1000 inactive=60s;
    server {
        server_name ~^(www\.)?(.+)$;
        access_log logs/$2-access.log main;
        error_log logs/$2-error.log;

        location /srcache {
            access_log logs/access-srcache.log srcache_log;
        }
    }
}
```

Nginx 其他命令及解释

  • open_log_file_cache指令

    语法默认值配置段
    open_log_file_cache max=N
    [inactive=time] [min_uses=N]
    [valid=time];open_log_file_cache off;
    open_log_file_cache off;http, server, location

    对于每一条日志记录,都将是先打开文件,再写入日志,然后关闭。
    可以使用open_log_file_cache来设置日志文件缓存(默认是off)。

    • max:设置缓存中的最大文件描述符数量,如果缓存被占满,采用LRU算法将描述符关闭。

    • inactive:设置存活时间,默认是10s

    • min_uses:设置在inactive时间段内,日志文件最少使用多少次后,该日志文件描述符记入缓存中,默认是1次

    • valid:设置检查频率,默认60s

    • off:禁用缓存

    • 参数注释如下:

    • 指令实例

      open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
      open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
  • log_not_found指令

    语法默认值配置段
    log_not_found onlog_not_found on;http, server, location

    是否在error_log中记录不存在的错误。默认是。

  • log_subrequest指令

    语法默认值配置段
    log_subrequest onlog_subrequest on;http, server, location

    是否在access_log中记录子请求的访问日志。默认不记录。

  • rewrite_log指令
    由ngx_http_rewrite_module模块提供的。用来记录重写日志的。对于调试重写规则建议开启。 Nginx重写规则指南

    语法默认值配置段
    rewrite_log onrewrite_log on;http, server, location

    启用时将在error log中记录notice级别的重写日志。

  • error_log指令

    语法默认值配置段
    error_log file | stderr |
    syslog:server=address
    [,parameter=value] [de
    bug |info | notice| warn
    | error| crit | alert | emerg];
    error_log logs/error.log error;



作者:羽恒
链接:https://www.jianshu.com/p/0a5630a82d63


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消