, .
TL;DR:
:
proxy_redirect ~(^http://localhost:3030|^)/(.*)$ /myApp/$2;
:
proxy_redirect / /myApp/;
, , /admin/ not http://localhost:3030/admin/. , , , .
:
RegExp
, , :
proxy_redirect (^|^http://localhost:3030)/ /myApp/;
, , ~ ~* .
-, , , -, , . , proxy_redirect :
proxy_redirect ~/(a|b)/ /myApp/;
/a/some-subdirectory/, /myApp/ /myApp/some-subdirectory/. , :
proxy_rewrite ~/(a|b)/(.*)$ /myApp/$2;
. . .
, proxy_redirect :
proxy_redirect ~(^http://localhost:3030|^)/(.*)$ /myApp/$2;