location /foo {
rewrite /foo/(.*) /$1 break;
proxy_pass http://localhost:3200;
proxy_redirect off;
proxy_set_header Host $host;
}
location /foo {
rewrite ^/foo(/.*)$ /some/path$1 break;
proxy_pass http://external-server-IP:8080;
}