在Nginx中,可以使用$http_user_agent
变量来获取请求的User-Agent头,然后基于这个头的值来决定如何转发请求。
实现方式一:
http {
map $http_user_agent $backend {
default http://backend3;
~*Chrome http://backend1;
~*Firefox http://backend2;
}
server {
listen 80;
location / {
proxy_pass $backend;
}
}
}
实现方式二:
server {
listen 80;
location / {
if ($http_user_agent ~* Chrome) {
proxy_pass http://backend1;
break;
}
if ($http_user_agent ~* Firefox) {
proxy_pass http://backend2;
break;
}
proxy_pass http://backend3;
}
}
标签:http,转发,agent,proxy,pass,user
From: https://www.cnblogs.com/wangend/p/18239371