服务器问答
根据请求 cookie 设置不同的变量
map $http_cookie $rootpath {
"~gray" "/data/gray";
default "/data";
}
server {
listen 80;
server_name devtest.foobar.cn;
access_log logs/devtest_access.log main;
index index.html index.htm index.jsp index.do;
root /data;
location ~ /omg {
root $rootpath;
try_files $uri $uri/美国服务器;
}