该ngx_http_sub_module
模块是一个过滤器,它通过将一个指定的字符串替换为另一个来修改响应。
第三方模块ngx_http_substitutions_filter_module,弥补了ngx_http_sub_module的不足,可以采用正则表达式替换。
官方模块:https://nginx.org/en/docs/http/ngx_http_sub_module.html
第三方模块:https://github.com/yaoweibin/ngx_http_substitutions_filter_module
编译ngx_http_sub_module
1 | ./configure --prefix=/usr/local/nginx --with-http_sub_module --add-module=/root/ngx_http_substitutions_filter_module |
配置参考
1 | location / { |