Hi, I'm new to Nginx and I've run into some issue, hope you can help me. Is there any way that I can do reverse proxy by for example:
location /webapp1 {
proxy_pass http://webapp1server:8080/;
}
and by not passing the "/webapp1" uri to my http://webappserver1:8080/?
I need this because I need to do reverse proxy to multiple servers.
location /webapp1 {
proxy_pass http://webapp1server:8080/;
}
and by not passing the "/webapp1" uri to my http://webappserver1:8080/?
I need this because I need to do reverse proxy to multiple servers.