logging - nginx access log file has incomplete request url -
i have strange problem in nginx request,
my upstream config is:
upstream alipay { server pay1:8084 max_fails=1 fail_timeout=60s; keepalive 32; }
and location config is:
location /alipay { proxy_pass http://alipay; }
the correct request this: http://xxxx.com/alipay/xxx/xxx
but in nginx access log file, there request miss uri part, is: "get /alipay/ http/1.1" 200 57 " lead invalid page. , of request url in log correct , response page ok. problem here? lot!
Comments
Post a Comment