Hi!
Dose lua module plan to support POST READ PHASE, such as post_read_by_lua**?
It can be used in http main scope like following:
http {
post_read_by_lua_block {
— todo
}
server {
...
}
server {
...
}
}
Maybe the directives (rewrite_xx, access_xx) already do some similar works well, it’s convinient to do things like real ip module dose happend in post read phase.
In real case, the rewrite_xx, access_xx directives are often be used in server or location scope, though these directives can be put in http main scope.
Thanks.