在Aws上的不同实例上路由流量

时间:2018-05-03 08:47:14

标签: php amazon-web-services amazon-ec2

我有两个实例和一个域(domain.com)

  1. 有java网站的地方
  2. 其他有wp网站的地方
  3. 现在,domain.com打开了一个java网站,一切正常。

    我想在domain.com/a

    上打开一个wordPress网站

    使用nginx路由流量。

    一旦域映射,WordPress就会处理所有URL。处理此类查询的标准过程是什么?

1 个答案:

答案 0 :(得分:0)

Yo可以使用proxy_pass指令:

location /a {
    proxy_pass http://127.0.0.1;
}

有关详细信息,请查看以下链接:

  1. https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/
  2. https://www.digitalocean.com/community/tutorials/understanding-nginx-http-proxying-load-balancing-buffering-and-caching