openresty nginx search for keyword in post request body data
I have been using openresty nginx for simple request forwarding purpose, it is working as expected, i am forwarding each incoming request to another URL using below code : location /app/ { proxy_pass https://example.com/abc/; proxy_read_timeout 60s; proxy_pass_header Server; proxy_set_header Host…