search

Home  >  Q&A  >  body text

Nginx configuration forwarding problem

Please give me some advice, here is a forwarding request like this:
/a/test -> Server 1/test
/b/test ->Server 2/test
How to configure such logic ?

仅有的幸福仅有的幸福2807 days ago389

reply all(1)I'll reply

  • 给我你的怀抱

    给我你的怀抱2017-05-16 17:19:12

    location /a/test/ {
        proxy_pass your_server/test/;
    }
    

    reply
    0
  • Cancelreply