带有和不带斜杠的nginx位置

时间:2018-06-13 19:01:52

标签: nginx nginx-location

我想创建一个捕获http://example.comhttp://example.com/的位置以及捕获其他所有内容的另一个位置。第一个将提供静态html,另一个用于api和其他东西。我试过这个:

location ~ /?$ {
    root /var/www/prod/client/www;
}

location ~ /.+ {
    # https://stackoverflow.com/questions/21662940/nginx-proxy-pass-cannot-have-uri-part-in-location
    rewrite ^/(.*) /$1 break;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-NginX-Proxy true;

    proxy_connect_timeout       1s;
    proxy_send_timeout          30s;
    proxy_read_timeout          300s;
    send_timeout                300s;

    proxy_redirect off;
    proxy_pass http://backendPro;
}

但是不起作用。我在第一个位置尝试了很多选项,但是当它首先匹配时,第二个不匹配,反之亦然:

location / {
location ~ \/?$ {
location ~ ^/?$ {

1 个答案:

答案 0 :(得分:4)

实际上要简单得多:

location = / {
  # Exact domain match, with or without slash
}

location / {
  # Everything except exact domain match
}

因为location = /更具体,所以如果只调用域名,则总是首选(位置块的顺序无关紧要)。

你需要在Nginx中使用正则表达式比你想象的少得多,因为正常的位置块匹配与开头匹配的每个URL,因此location /bla匹配域上以/ bla开头的每个URL(如/ blabla,或者/ bla / blu,或/bla.jpg)。如果您需要捕获群组并对其执行某些操作,我会主要推荐正则表达式。