Django http connection timeout

apache, django, mod-wsgi, python

Solution

I solved this problem with:

`python manage.py runserver --http_timeout 120`

Problem

I have Django + mod_wsgi + Apache server. I need to change default HTTP connection timeout. There is Timeout directive in apache config but it's not working. How can I set this up?

Original source