I have multiple developers on one server, each with their own copy of the same perl codebase checked out of SVN.
I want each developer to have their own subdomain pointing to their own copy of the codebase.
I tried putting PerlSwitches inside , but that didn't seem to work. e.g.
 <VirtualHost dev1.devserver.com> PerlSwitches -I/home/dev1/www -w -T <Location /webapp/> SetHandler perl-script PerlHandler WebApp::Handler </Location> </VirtualHost> <VirtualHost dev2.devserver.com> PerlSwitches -I/home/dev2/www -w -T <Location /webapp/> SetHandler perl-script PerlHandler WebApp::Handler </Location> </VirtualHost> Thanks.