Ngnix time-out problem

Source: Internet
Author: User
Tags php tutorial
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.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.