Turn off IPv6 in Apache To turn off IPv6 in Apache, just change the Listen directive to: Listen 0.0.0.0:80 This will limit Apache to listening only to ...
分类:
其他好文 时间:
2020-03-18 17:11:53
阅读次数:
188
之前分享的 [日志分析]Graylog2采集Nginx日志 主动方式 这篇文章介绍了Graylog如何通过Graylog Collector Sidecar来采集nginx日志。 由于日志是未经处理的,所以类似$remote_addr $request_time $upstream_addr $up ...
分类:
其他好文 时间:
2020-03-18 11:21:10
阅读次数:
185
打开nginx.conf 可以看到log_format 的默认配置如下,今天我们来一起学习一下nginx log_format 的配置,以及一些变量的作用; log_format main '$remote_addr - $remote_user [$time_local] $scheme $htt ...
分类:
其他好文 时间:
2020-03-11 10:37:16
阅读次数:
73
在nginx的配置文件中的location下添加 proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_he ...
分类:
其他好文 时间:
2020-02-29 11:31:22
阅读次数:
220
01. 访问不同的网站地址,不能显示不同的网站页面 proxy_set_header Host $host; 02. 访问网站用户地址信息无法进行分析统计 proxy_set_header X-Forwarded-For $remote_addr; 03. 访问负载均衡会出现错误页面,影响用户体验 ...
分类:
其他好文 时间:
2020-02-14 19:08:34
阅读次数:
75
[root@Alen conf]# vim nginx.conf [root@Alen conf]# cat nginx.conf http { # log_format 关键字定义日志的格式 # $remote_addr 源端的IP地址 # $time_local 当前的时间 include mi ...
分类:
Web程序 时间:
2020-02-12 18:39:53
阅读次数:
82
进入页面 贴出源码 1 <?php 2 3 if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { 4 $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR']; 5 } 6 7 if(!isset($ ...
分类:
其他好文 时间:
2020-02-12 12:33:32
阅读次数:
78
知识点:escapeshellarg()和escapeshellcmd()函数漏洞、nmap的文件写入 打开靶场就是代码审计 remote_addr和x_forwarded_for这两个是常见的服务器获取ip,问题应该不在这。 escapeshellarg()和escapeshellcmd()百度一 ...
分类:
其他好文 时间:
2020-02-09 11:16:12
阅读次数:
180
一、如果没有使用代理服务器, REMOTE_ADDR= 客户端IP HTTP_X_FORWARDED_FOR= 没数值或不显示 $ip = $_SERVER['REMOTE_ADDR']; 二、使用透明代理, REMOTE_ADDR= 最后一个代理服务器 IP HTTP_X_FORWARDED_FO ...
分类:
Web程序 时间:
2020-02-09 09:17:36
阅读次数:
157
location /admin/api { proxy_pass http://172.26.190.212:7001/api; proxy_set_header X_Real_IP $remote_addr; proxy_set_header X-Forwarded-For $remote_add... ...
分类:
其他好文 时间:
2020-02-04 10:41:48
阅读次数:
330