Hi there. My website (http://torels.co.cc) seems to be very slow when handling wsgi scripts. It loads normal files pretty fast, but wsgi processing takes about 20 seconds. could it be the .htaccess file creating the problem?
# -FrontPage-
IndexIgnore .htaccess #*/.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName torels.co.cc
AuthUserFile /home1/torels/public_html/_vti_pvt/service.pwd
AuthGroupFile /home1/torels/public_html/_vti_pvt/service.grp
DirectoryIndex index.wsgi index.html
AddHandler wsgi-script .wsgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /home1/torels/public_html/index.wsgi/$1 [QSA,PT,L]
Or is it more likely to be a coding issue that makes the script slow (like a badly coded loop or something)? thanks in advance