[Answered ]-Django runfcgi mode timeout

2👍

As explained in the Django docs on FastCGI:

FastCGI is an efficient way of letting
an external application serve pages to
a Web server. The Web server delegates
the incoming Web requests (via a
socket) to FastCGI, which executes the
code and passes the response back to
the Web server, which, in turn, passes
it back to the client’s Web browser.

You’re trying to connect directly to the FCGI process from your browser, which won’t work: you need an FCGI-compliant webserver to handle your request and delegate it to Django.

See the Django docs for a thorough explanation of how to set this up.

Leave a comment