nginx.conf 中的多个上游组

nginx.conf 中的多个上游组

Nginx 初学者问题:upstream配置中是否允许多个定义,例如:

  upstream backendA {
    server host1:443;
  }

  upstream backendB {
    server host2:443;
  }

  location addrA {
    https://backendA/;
  }

  location addrB {
    https://backendB/;
  }

}

相关内容