Hello NGINX experts,
I am developing a new custom module that hooks into an NGINX processing phase. There is already another custom module (Module A) registered in the same phase.
I would like my new module to run after Module A. Both Module A and the new module are dynamic modules. I have following questions:
- Is there a reliable way to control the execution order between modules in the same phase and make this order consistent?
- Is it true that custom modules are always run after built-in module in the same phase?
Thank you.