On my debian server, I have setup Apache + wsgi + django. I've multiple domains hosted. Structure as follows:
/srv/www/example1.com/public_html/ /srv/www/example1.com/application/ /srv/www/example2.com/public_html/ /srv/www/example2.com/application/ I'm accessing my django projects using Apache virtual host configuration for domain. (i.e) WSGIScriptAlias / /srv/www/example1.com/application/django.wsgi I want to play around with web2py. How can I install web2py without changing my directory structure and using Apache virtual host config?

