nginx根據cookie分流

nginx根據cookie分流
衆所周知,nginx可以根據url path進行分流,殊不知對於cookie分流也很強大,同時這也是我上篇提到的小流量實驗的基礎。

二話不說,先看需求,兩臺服務器分別定義爲
apache001:192.168.1.1:8080
apache002:192.168.1.2:8080

默認服務器爲:
default:192.168.1.0:8080

前端nginx服務器監聽端口8080,需要根據cookie轉發,查詢的cookie的鍵(key)爲abcdexpid,如果該cookie值(value)以1結尾則轉發到apache001,以2結尾則轉發到apache002。

方案1:
用map,nginx.conf配置如下:

map $COOKIE_abcdexpid $group {
~*1$ apache001;
~*2$ apache002;
default root;
}

upstream apache001 {
server 192.168.1.1:8080 weight=1 max_fails=1 fail_timeout=30s;
}

upstream apache002 {
server 192.168.1.2:8080 weight=1 max_fails=1 fail_timeout=30s;
}

upstream root {
server 192.168.1.0:8080 weight=1 max_fails=1 fail_timeout=30s;
}

server {
listen 8080;
server_name neoremind.net;

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" "group=$group"'
'"$http_user_agent" $gzip_ratio $request_time "$http_x_forwarded_for"';

access_log logs/access_log main;
error_log logs/error_log;

location / {
proxy_pass http://$group;
proxy_set_header X-Forwarded-For $remote_addr;

}


方案2:
利用set和if…else… ,nginx.conf配置如下:


upstream apache001 {
server 192.168.1.1:8080 weight=1 max_fails=1 fail_timeout=30s;
}

upstream apache002 {
server 192.168.1.2:8080 weight=1 max_fails=1 fail_timeout=30s;
}

upstream root {
server 192.168.1.0:8080 weight=1 max_fails=1 fail_timeout=30s;
}

server {
listen 8080;
server_name beidoutest.baidu.com;

#match cookie
set $group "root";
if ($http_cookie ~* "abcdexpid=([^;]+)(1$)"){
set $group apache001;
}
if ($http_cookie ~* "abcdexpid=([^;]+)(2$)"){
set $group apache002;
}

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" "group=$group"'
'"$http_user_agent" $gzip_ratio $request_time "$http_x_forwarded_for"';

access_log logs/access_log main;
error_log logs/error_log;

location / {
proxy_pass http://$group;
proxy_set_header X-Forwarded-For $remote_addr;
}

}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章