<div dir="auto"><p style=""><font face="sans-serif"><span style="font-size:12.8px">Hi All, </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">I am using open source NGINX as reverse proxy. There are certain URL which have URL parameters.</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">I am getting following error while accessing this URL.</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">2018/02/22 15:11:08 [error] 1606#0: *21 upstream sent invalid chunked response while reading upstream, client: 10.109.1.4, server: <a href="http://XXX.XXXXXXXX.com">XXX.XXXXXXXX.com</a>, request: "GET /bsg/scrips HTTP/1.1", upstream: "<a href="http://127.0.0.1:8042/bsg/scrips">http://127.0.0.1:8042/bsg/scrips</a>", host: "<a href="http://XXX.XXXXXXXX.com:8030">XXX.XXXXXXXX.com:8030</a>"</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">2018/02/22 15:11:47 [error] 1606#0: *24 upstream sent invalid chunked response while reading upstream, client: 10.109.1.4, server: <a href="http://XXX.XXXXXXXX.com">XXX.XXXXXXXX.com</a>, request: "GET /bsg/scrips HTTP/1.1", upstream: "<a href="http://127.0.0.1:8042/bsg/scrips">http://127.0.0.1:8042/bsg/scrips</a>", host: "<a href="http://XXX.XXXXXXXX.com:8030">XXX.XXXXXXXX.com:8030</a>"</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">The nginx.conf for above is</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"># For more information on configuration, see:</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">#   * Official English Documentation: <a href="http://nginx.org/en/docs/">http://nginx.org/en/docs/</a></span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">#   * Official Russian Documentation: <a href="http://nginx.org/ru/docs/">http://nginx.org/ru/docs/</a></span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">user nginx;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">worker_processes auto;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">error_log /var/log/nginx/error.log;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">pid /var/run/nginx.pid;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"># Load dynamic modules. See /usr/share/nginx/README.dynamic.</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">include /usr/share/nginx/modules/*.conf;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"> </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">events {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    worker_connections  1024;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">}</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">http {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">client_body_buffer_size 10M;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">server {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                listen       8030;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                 server_name  <a href="http://xxx.xxxxxxxx.com">xxx.xxxxxxxx.com</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">               </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/live {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041/bsg/ltp/live">http://localhost:8041/bsg/ltp/live</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">   }      </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/ {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041/bsg/ltp/">http://localhost:8041/bsg/ltp/</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">   }               </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/live/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041">http://localhost:8041</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }              </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/live/$arg_name/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041">http://localhost:8041</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }             </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/closing {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041/bsg/ltp/closing">http://localhost:8041/bsg/ltp/closing</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }              </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/closing/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041">http://localhost:8041</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }            </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ltp/closing/$arg_name/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8041">http://localhost:8041</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    } </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/scrips {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8042/bsg/scrips">http://localhost:8042/bsg/scrips</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }               </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/scrips/find/isin/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8042">http://localhost:8042</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }           </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/scrips/find/bse-code/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8042">http://localhost:8042</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }               </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/scrips/find/nse-symbol/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8042">http://localhost:8042</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }              </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/scrips/find/group/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8042">http://localhost:8042</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }                       </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"><br></span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"><br></span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ucm/pincode/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8043">http://localhost:8043</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }          </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location /bsg/ucm/ifscode/$arg_name {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8043">http://localhost:8043</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                location ucic/customerid {</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">        proxy_pass <a href="http://localhost:8044/ucic/customerid">http://localhost:8044/ucic/customerid</a>;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    }</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"> </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">}</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                      '$status $body_bytes_sent "$http_referer" '</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">                      '"$http_user_agent" "$http_x_forwarded_for"';</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"> </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    access_log  /var/log/nginx/access.log  main; </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    sendfile            on;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    tcp_nopush          on;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    tcp_nodelay         on;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    keepalive_timeout   65;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    types_hash_max_size 2048;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    Include             /etc/nginx/mime.types;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    default_type        application/octet-stream;</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px"> </span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    # Load modular configuration files from the /etc/nginx/conf.d directory.</span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    # See <a href="http://nginx.org/en/docs/ngx_core_module.html#include">http://nginx.org/en/docs/ngx_core_module.html#include</a></span></font></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">    # for more information</span></font><span style="font-family:sans-serif;font-size:12.8px">i</span></p><p style=""><span style="font-family:sans-serif;font-size:12.8px">nclude /etc/nginx/conf.d/*.conf;</span></p><p style=""><font face="sans-serif"><span style="font-size:12.8px">}</span></font></p><p style="font-family:sans-serif;font-size:12.8px">Thanks & Regards, </p><p style="font-family:sans-serif;font-size:12.8px">Pritam Chavan. </p></div>