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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -