1. access_log
Nginx会把每个用户访问信息记录到指定的日志文件里,供网站管理员分析用户浏览行为等,此功能又 ngx_http_log_module 模块负责。
2. 参数配置
Nginx访问日志的参数在配置文件nginx.conf中进行设定。
log_format:用来定义记录日志的格式(可以定义多种日志格式,取不同名字即可)。
access_log:用来指定日至文件的路径及使用的何种日志格式记录日志。
log_format的默认值:
# log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
access_log的默认值:
# access_log logs/access.log main;
log_format语法格式及参数语法说明如下:
log_format <NAME> <STRING>;
关键字 格式标签 日志格式
关键字: