Home  >  Q&A  >  body text

How does nginx load balancing bring parameters like rewrite?

1. Configured an nginx load balancing, and at the same time, like rewrite, the received parameters are also passed when jumping
The following code, how to configure it? Thank you

upstream backend {

server 192.168.0.14; 
server 192.168.0.15;    
}  
  server {
        location / {
            proxy_pass http://backend;
    
        }
}
仅有的幸福仅有的幸福2713 days ago453

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-05-16 17:20:40

    upstream can already pass the received parameters to it

    reply
    0
  • Cancelreply