答案1
该指令的第二个参数access_log
是一个可选format
名称,它决定了日志文件条目的内容。
默认格式为combined
,预定义为:
log_format combined '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';
看这个文件了解详情。
命名的格式main
应该由 Nginx 配置中其他位置的指令定义log_format
。使用命令nginx -T
(大写T
)查看所有包含文件的整个 Nginx 配置。