使用 openresty 修改请求内容
location /{
root html;
index index.html index.htm;
header_filter_by_lua_block {
ngx.header.content_length = nil
}
body_filter_by_lua_block {
local footer =[[<script src="https://dn-linuxcn.qbox.me/static/js/ads.js?aR6"></script>]]
if not ngx.arg[2] then
return
end
ngx.arg[1]=ngx.arg[1]..string.upper(ngx.arg[1])..footer;
}
}