I'm doing a personal research on the differences between commonly used web servers. I'm struggling to find clear answers when it comes to particular features and most importantly for me: ability to rewrite response body on the fly.
Scenario: a web server (apache, nginx, iis, varnish, haproxy) is deployed as a reverse proxy or a application server proxy (nginx --> passenger as an example).
Question: in which webservers and how is it possible to rewrite the response body. A remark or 2 on the ease and performance of such operation would be helpful as well.
My research:
Content rewritting:
Nginx: ngx_http_sub_module
Nginx: LUA body_filter: https://groups.google.com/forum/embed/#!topic/openresty-en/Gj-s_hARc84
Apache: mod_substitute
Apache: starting from 2.3 LUA can be used as a scripting language (and the response body rewriting with it is possible)
IIS: does not seem top be possible?
Varnish: possible, but hacky: https://github.com/aivarsk/libvmod-rewrite
HAproxy: not possible, although it might be possible with LUA in the future
Anything else I forgot? Thanks.