20
    location /product {
        proxy_pass http://10.0.0.25:8080;
    }

if I use my first location description for product folder, I should use http://mysdomain.com/product/ and I can not use http://mysdomain.com/product from browser. I mean I should use a slash end of url. I want to access product folder with two stuation.

is there s difference between this:

    location /product/ {
        proxy_pass http://10.0.0.25:8080;
    }
barteloma
  • 309
  • 1
  • 2
  • 4

2 Answers2

16

These locations are different. First one will match /production for example, that might be not what you expected. So I prefer to use locations with a trailing slash.

Also, note that:

If a location is defined by a prefix string that ends with the slash character, and requests are processed by one of proxy_pass, fastcgi_pass, uwsgi_pass, scgi_pass, or memcached_pass, then in response to a request with URI equal to this string, but without the trailing slash, a permanent redirect with the code 301 will be returned to the requested URI with the slash appended.

If you have something like:

location /product/ {
    proxy_pass http://backend;
}

and go to http://example.com/product, nginx will automatically redirect you to http://example.com/product/.

Even if you don't use one of these directives above, you could always do the redirect manually:

location = /product {
    rewrite ^ /product/ permanent;
}

or, if you don't want redirect you could use:

location = /product {
    proxy_pass http://backend;
}
Alexey Ten
  • 7,922
  • 31
  • 35
  • I am using proxy_pass http://myip:8080/product , then call browser this address. Browser redirects me to http://myip/product and gives error page can not view. – barteloma Jun 25 '14 at 07:01
  • Use backticks for code. Markdown parsed you comment and it's hard to find out what your code really is. – Alexey Ten Jun 25 '14 at 07:04
  • 1
    Thanks, it was important to know that if /product/ is added then even the browser send it /product is bound to receive the 301 from the server. Quite valid point indeed. – Sur Max Aug 25 '18 at 12:13
5

No, these are not the same--you will need to use a trailing slash with a regex to match both, i.e.

location ~ /product/?

See this related answer for a more detailed response on how to match the entire URL.

Andrew M.
  • 10,982
  • 2
  • 34
  • 29