欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

记录Nginx服务器的Split Clients模块配置过程

程序员文章站 2024-02-05 14:59:10
ngx-http-split-clients模块基于一些特定条件分开客户端连接,(例如ip地址,请求头,cookies等) 示例配置: http {...

ngx-http-split-clients模块基于一些特定条件分开客户端连接,(例如ip地址,请求头,cookies等)
示例配置:

http {
  split-clients "${remote-addr}aaa" $variant {
    0.5% .one;
    2.0% .two;
    - "";
  }
 
  server {
    location / {
       index index${variant}.html;

可以使用$cookie-…作为来源来分离请求,来源字符串使用crc32进行哈希计算并且哈希百分比将作为来源的值。
指令

split-clients

语法:split-clients $variable { … }
默认值:none
使用字段:http

发现模块官网wiki给的上面的示例配置代码有几点问题,我编译安装后,按照wiki的方法配置nginx.conf 报错。

我实际的代码是:

http {
  split_clients "${remote_addr}aaa" $variant {
    0.5% .one;
    2% .two;
    3% .eric;
    4% .yang;
    50% .thr;
    * "";
  }

  server {
    location / {
       index index${variant}.html;
  }

然后新建几个文件

cd /usr/local/nginx/html/

echo "one" >index.one.html
echo "two" >index.two.html
echo "eric" >index.eric.html
echo "thr" >index.thr.html

配置差别:

wiki : split-clients   eric:split_clients
wiki : remote-addr    eric: remote_addr
wiki : - "";      eric: * "";
关于这些错误的发现是因为 nginx 有 remote_addr 变量 并没有 remote-addr ·我就顺藤摸瓜·
随后我来讲下 split clients模块的一点点知识,我自己时间测试出来的~
关于测试,我们在 nginx 的错误日志上 输出 ${variant} 变量
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
         '$status $body_bytes_sent "$http_referer" '
         '"$http_user_agent" "$http_x_forwarded_for" "$variant"';
以便于我们测试结果。
split clients 的模块 模块 是切割 客户端ip 然后然后 使用crc32的 算出一个值去匹配·
在 俄文网站上 翻译出这么一段:
该指令创造了a / b分割一变
测试,例如:
http {
  split_clients "${remote_addr}aaa" $variant {
    0.5% .one;
    2% .two;
    * "";
  }

原来的字符串变量的值是哈希
使用crc32的。在这个例子中,当
哈希值从0到21474836(0.5%),变量$变种
有值“。之一”。如果哈希值21474837
至107374182(2%) - “。两个”。而如果从107374183哈希值
4294967297 - “”。
也就是说,比如 我的ip地址是 192.168.1.29 服务器ip 为 192.168.1.28
当我访问 nginx 的时候,nginx 会切割我的ip地址 匹配到 .1
日志:

复制代码 代码如下:

192.168.1.29 - - [01/apr/2011:15:39:17 +0800] "get / http/1.1" 403 571 "-" "mozilla/4.0 (compatible; msie 8.0; windows nt 5.1; trident/4.0)" "-" ".thr"


看到的页面是 thr
当我修改我的 ip 为 192.168.220.29 服务器ip 为 192.168.220.28
在看日志:

复制代码 代码如下:

192.168.220.29 - - [01/apr/2011:15:44:46 +0800] "get / http/1.1" 403 571 "-" "mozilla/4.0 (compatible; msie 8.0; windows nt 5.1; trident/4.0)" "-" ".two"


看到的页面是 two
ps:这样的画 nginx 里的$variant 变量 可以给我们带来各种好处了·判断来自哪个ip段的分到哪个服务器上~!