Score:1

Pass url after trailing slash to proxy_pass

jp flag

How do you redirect everything after* the trailing slash to an internal server? I hope that made sense. Example: www.foo.com/v2/api should go to localhost:3000/api or www.foo.com/v2/something goes to localhost:3000/something. I have this:

location ~ ^/v2/(.*) {
   #rewrite ^/(.*)$ $1 break;
   proxy_pass http://localhost:3000/$1;
}
foo.com/v2/<ANYTHING-HERE-SHOULD-MOVE-BEHIND-PORT-3000>

*see above

Based on the web, this should work, right? But it's not. An nginx task was thrown at me without notice but by looking at that, should it have worked?

Score:1
jp flag

You probably need to define a resolver as you are using proxy_pass with variables.

However, the functionality you are looking for can be achieved more simply using a prefix location rather than a regular expression:

location /v2/ {
    proxy_pass http://localhost:3000/;
}
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.