Nginx的。如果是空URI。如果是空域。地点。正则表达式

时间:2010-12-14 00:56:42

标签: nginx location

我正在使用上游模块来平衡我的网站。出于某种原因,我必须将一些请求重定向到指定的服务器。 简而言之:我想将domain.com重定向到指定的服务器,domain.com/anything可以由上游模块提供服务。因此,如果只有请求中的域而没有别的。

   location [here_something_i_dont_know]/ {
        proxy_pass           http://0.0.0.0:9000/;
        access_log      off;
    }

感谢您的帮助!

1 个答案:

答案 0 :(得分:4)

   location = / {
        proxy_pass           http://0.0.0.0:9000/;
        access_log      off;
   }
   location / {
        proxy_pass           http://another_upstream;
        access_log      off;
   }