Search code examples
apache-apisix

Does the custom lua plugin for Apache APISIX support all phases of Nginx execution?


Apache APISIX supports custom plugins, and I would like to know if I develop a lua plugin, at which stages of Nginx execution will it be injected, and does it support all of them?


Solution

  • APISIX lua plugin supports code execution in the rewrite, access, before_proxy, header_filter, body_filter, and log phases of nginx. As shown here:

    enter image description here