I want to accomplish something like
https://companyname.net/admin/identity routed to https://localhost:9443
https://companyname.net/admin/identity/a/b/c routed to https://localhost:9443/a/b/c
How to do those the neatest possible way?
Current Config:
location /admin/identity$path {
proxy_pass https://localhost:9443$path;
}