First of all, this question should be searchable on Baidu and Google. Secondly, let me answer it
499, client has closed connection
It means that the client actively disconnected. Generally, the server's processing time is too long, and the client can't wait and disconnects. Another situation is that someone attacks and deliberately consumes server resources.
In the nginx source code, the corresponding definition of 499 is "client has closed connection". This is most likely because the server-side processing time is too long and the client is "impatient". To solve this problem, some optimizations need to be done in the program.
First of all, this question should be searchable on Baidu and Google.
Secondly, let me answer it
It means that the client actively disconnected. Generally, the server's processing time is too long, and the client can't wait and disconnects.
Another situation is that someone attacks and deliberately consumes server resources.
In the nginx source code, the corresponding definition of 499 is "client has closed connection". This is most likely because the server-side processing time is too long and the client is "impatient". To solve this problem, some optimizations need to be done in the program.
http://blog.csdn.net/rainday0310/article/details/8166163