With Apache for a long time, heard Ngnix performance excellence, so decided to use Ngnix in the project to replace Apache, and Nginx can be installed.
But in the use of Ngnix found some problems, the first is the file over a certain size can not be uploaded, background check the data found when the upload has a default file size, need to adjust nginx parameters.
Later found that the original execution time of a long operation did not wait until the return results are thrown wrong, I immediately think of a time-out problem, check nginx.conf
There are:
#keepalive_timeout 0;
Keepalive_timeout 65;
Changed into Keepalive_timeout 300; (5 minutes) does not work,
It was later changed to the following way:
#keepalive_timeout 0;
#keepalive_timeout 65;
Keepalive_timeout 300;
Send_timeout 300;
Proxy_read_timeout 300;
The results can be used.
The above describes the Ngnix time-out problem, including the aspects of the content, I hope that the PHP tutorial interested in a friend helpful.