Hello I have an application in which you upload and download many documents (pdf). The files are generally small (~ 150KB). Both uploads and downloads take a long time 30-40 seconds or more. Often ends in a time-out (currently 120 seconds)
The application is hosted in a "home server" using a no-ip.org. All the rest of the aplicacón has very good response times, except for uploads and downloads. I'm using: - Freebsd 8.2 - Cherokee 1.2.101 - uwsgi 1.0.1 The wsgi configuration file is: <uwsgi> <pythonpath>/home/web2py/</pythonpath> <module>wsgihandler</module> <socket>/tmp/web2py.sock</socket> <master/> <processes>8</processes> <threads>7</threads> <harakiri>120</harakiri> <socket-timeout>120</socket-timeout> <post-buffering>4096</post-buffering> <max-requests>1000</max-requests> <logto>/tmp/uwsgi.log</logto> </uwsgi> Someone can help me configure and Cherokee uwsgi to improve the performance of uploads and downloads. Thank you very much Best regards Jose

