Am 19.04.2016 um 04:41 schrieb Matt Hughes:
Yeah, I misspoke when I said |LuaHookInsertFilter|; that isn’t actually implemented yet at least on 2.4. Actually have been trying the quick handler and hookfixups. What hook should I be using? What value do I return from my handler so that Apache will still send the request onto the reverse proxy? I feel like this (http://www.modlua.org/recipes/loadbalancing) may be what I want, but I don’t know how to hook that into my httpd.conf file. Does this tie into mod_proxy at all, or is this instead of? In that example, what is the magic string “proxy-server”?:
As far as I can see it is only used by mod_dir and set by mod_rewrite (in case a rewrite rule triggers proxying) and mod_proxy. I haven't inspected in detail, why mod_dir checks it.
|function proxy_handler(r) r.handler = "proxy-server" r.proxyreq = apache2.PROXYREQ_REVERSE r.filename = "proxy:" .. backends[math.random(1,#backends)] .. r.uri return apache2.DECLINED -- let the proxy handler do this instead end |
Regards, Rainer --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx