viwes>>>ip_list=['192.168.1.X']def index(request): """ request.META是一个字典 """ # 获得客户端IP user_ip = request.META['REMOTE_ADDR'] if user_ip in lp_list: re ...
分类:
其他好文 时间:
2020-07-10 12:58:22
阅读次数:
63
1、如果没有通过nginx的反向代理:request.META.get("REMOTE_ADDR") 2、在nginx配置中增加HTTP_X_FORWARDED_FOR X-Forwarded-For请求头格式:X-Forwarded-For:client, proxy1, proxy2 proxy ...
分类:
其他好文 时间:
2020-07-09 15:17:27
阅读次数:
65
##日志格式 '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for"' 首先把字 ...
分类:
其他好文 时间:
2020-06-24 14:24:57
阅读次数:
55
修改nginx 的配置文件/etc/nginx/nginx.conf http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_ref ...
分类:
系统相关 时间:
2020-06-18 21:31:42
阅读次数:
81
log_format json '{"@timestamp":"$time_iso8601",' '"host":"$server_addr",' '"clientip":"$remote_addr",' '"size":$body_bytes_sent,' '"responsetime":$req ...
分类:
Web程序 时间:
2020-06-14 20:40:04
阅读次数:
69
反向代理日志json化 步骤 使用ansible用户登录反向代理服务器 cd /etc/nginx/ 修改配置文件nginx.conf sudo vi nginx.conf 将 log_format main '$remote_addr - $remote_user [$time_local] "$ ...
分类:
Web程序 时间:
2020-06-12 00:31:34
阅读次数:
120
要放在http之前 #tcp_proxy stream { upstream tcp_proxy{ hash $remote_addr consistent; server 192.168.8.56:4809; #需代理的IP+PORT } server { listen 4111; proxy_c ...
Nginx 四层代理理仅能存在于 main 段,以下是代理的配置 stream { upstream ssh_proxy { hash $remote_addr consistent; server 192.168.1.10:22; #实际的服务器IP及端口 } upstream mysql_pro ...
分类:
其他好文 时间:
2020-05-28 23:13:04
阅读次数:
88
log_format <NAME> <String>; 关键字 格式标签 日志格式 关键字:其中关键字error_log不能改变 格式标签:格式标签是给一套日志格式设置一个独特的名字 日志格式:给日志设置格式 log_format main '$remote_addr - $remote_us ...
分类:
数据库 时间:
2020-05-18 23:08:03
阅读次数:
136
注:图片如果损坏,点击文章链接:https://www.toutiao.com/i6806672112477012493/ 在linux中nginx日志产生的格式是下面的配置: $remote_addr^A$msec^A$http_host^A$request_uri 然后准备好了获取的日志数据 创 ...
分类:
其他好文 时间:
2020-03-21 23:38:07
阅读次数:
82