nginx的log中记录协议类型

记录HTTP/HTTPS请求协议类型于nginx日志
本文详细介绍了如何在nginx日志中记录请求的协议类型(HTTP或HTTPS),通过定制log_format和access_log配置实现。通过示例配置,展示了如何使用$scheme变量来区分不同协议,并在access.log文件中输出完整的请求记录。

nginx默认的log format没有记录请求的协议类型,比如是http还是https。

做如下配置:

log_format  main_log  '$remote_addr - $remote_user [$time_local] $scheme "$request" '
                    '$status $body_bytes_sent "$http_referer" '
                    '"$http_user_agent" "$http_x_forwarded_for" '
                    'up_addr["$upstream_addr"] up_status[$upstream_status] '
                    'up_response_time[$upstream_response_time]';
access_log  logs/access.log  main_log;

其中的 $scheme 来记录协议类型。

这样在access.log中就会出现类似记录:

xxxxxx xxx xxxxx  https xxxxx xxxxxx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值