SlardarHTTP 负载均衡器
示例代码:
添加一个服务器到node-dev.example.com
$ curl 127.0.0.1:1995/upstream/node-dev.example.com -d '{"servers":[{"host":"127.0.0.1", "port": 4000}]}' {"status":200}
现在,我们可以得到正确的结果。
$ curl 127.0.0.1:8080/ -H "Host: node-dev.example.com" hello world
加载一个loa脚本
$ curl 127.0.0.1:1995/lua/script.node-dev.example.com -d 'if ngx.get_method() == "DELETE" then return ngx.exit(403) end' "ok" $ curl -XPUT 127.0.0.1:1995/lua/script.test
评论