我用的是lnmp.org的环境
/usr/local/nginx/conf/nginx.conf
在
http {
}
部分增加
map $HTTP_CF_CONNECTING_IP $clientRealIp {
"" $remote_addr;
~^(?P<firstAddr>[0-9.]+),?.*$ $firstAddr;
}
log_format main '$clientRealIp [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'$http_user_agent $remote_addr $request_time';
主要是为了通用性,如果关闭了CDN,可以不需要修改获取IP的方式,所以才这么修改,不然直接用$HTTP_CF_CONNECTING_IP就行了(这个时候就不需要在日志格式里使用$clientRealIp)
然后在网站记录的日志定义使用main这个日志格式
比如
access_log /home/wwwlogs/abc.com.log main;
参考来源:https://www.bnxb.com/php/27592.html