比如客户端请求
http://host.com/?serverId=server1
host.com 服务端可能是运行在 nginx,或 nodejs,或 python
服务端这边获取到 serverId=server1,
服务端会根据配置文件,得到 server1 的 ip:192.168.1.11 端口:2000
怎么把这个请求转发给 ip:192.168.1.11 端口:2000
而且在高并发请求的时候,还能保持高性能?
1
qmm0523 2017-09-12 16:51:40 +08:00
|
2
greatonce OP @qmm0523 谢谢,其实我想问的是,有没有什么方法能动态的处理,因为配置列表可能是随时更新的,如果写到 nginx 配置的话需要频繁更新
|
3
orderc 2017-09-13 11:28:24 +08:00
etcd+confd,动态更新 nginx 配置文件
|