Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django http connection timeout

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?

like image 587
Bojan Radojevic Avatar asked Feb 12 '14 18:02

Bojan Radojevic


1 Answers

I solved this problem with:

python manage.py runserver --http_timeout 120

like image 179
Jon Avatar answered Nov 18 '22 05:11

Jon