Slide 13
Slide 13 text
Routing in Loadbalancer
local http = require "resty.http"
local httpc = http.new()
local res, err = httpc:request_uri(http://your-service, {
method = "GET"
})
upstream = "shopware-"..res.body:match( "^%s*(.-)%s*$" )
ngx.var.upstream = upstream