and what should be my next steps ? I need to deploy a web application to my site and i don't want to switch to a different hosting service, Please help me !
#!/home/user/python/bin/python2.7
import sys, os
sys.path.append('/home/user/public_html/web2py')
os.chdir('/home/user/public_html/web2py')
from flup.server.fcgi_fork import WSGIServer
import gluon.main
application=gluon.main.wsgibase
# or
# application=gluon.main.wsgibase_with_logging
WSGIServer(application).run()