阿里云SLB(负载均衡)获取真实ip地址, log_format配置

nginx.conf配置文件

#vim /usr/local/nginx/conf/nginx.conf
log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
        '$status $body_bytes_sent "$http_referer" '
        '"$http_user_agent" $http_x_forwarded_for '
        '"$upstream_addr" "$upstream_status" "$upstream_response_time" "$request_time"';
include /etc/nginx/conf.d/*.conf;

duweixin.com.conf配置文件

#vim /etc/nginx/conf.d/duweixin.conf
 server
 {
    listen 80 default;
    server_name www.duweixin.net;
    index index.html;
    root /data/www/duweixin.net;
     location ~ .*\.do?$
     {
        proxy_pass http://10.10.10.68:8099;
     }
    access_log /data/logs/www.duweixin.com.log access;
 }

阿里云官网文档:
IIS、apache、nginx日志中如何获取用户的真实IP?

https://help.aliyun.com/knowledge_detail/5973903.html?spm=5176.2020520129.111.9.Cah0In&pos=4

log_format日志参数说明:

$remote_addr 客户端地址 例如:211.28.65.253
$remote_user 客户端用户名称
$time_local 访问时间和时区 例如:18/Jul/2012:17:00:01 +0800
$request 请求的URI和HTTP协议 例如:”GET /article-10000.html HTTP/1.1″
$http_host 请求地址,即浏览器中你输入的地址(IP或域名) 例如:www.duweixin.net
192.168.100.100
$status HTTP请求状态 例如:200
$upstream_status upstream状态 例如:200
$body_bytes_sent 发送给客户端文件内容大小 1547
$http_referer url跳转来源 例如: http://www.duweixin.net/
$http_user_agent 用户终端浏览器等信息 例如:”Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; GTB7.0; .NET4.0C;
$ssl_protocol SSL协议版本 例如:TLSv1
$ssl_cipher 交换数据中的算法 例如:RC4-SHA
$upstream_addr 后台upstream的地址,即真正提供服务的主机地址 例如:10.10.10.100:80
$request_time 整个请求的总时间 例如:0.205
$upstream_response_time 请求过程中,upstream响应时间 例如:0.002

    原文作者:asoren
    原文地址: https://segmentfault.com/a/1190000005340650
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞