[Trac-tickets] [The Trac Project] #2370: Virtual hosts

The Trac Project noreply at edgewall.com
Thu Nov 17 08:56:59 CST 2005


#2370: Virtual hosts
-------------------------+--------------------------------------------------
 Reporter:  Jacob        |       Owner:  jonas
     Type:  enhancement  |      Status:  new  
 Priority:  normal       |   Milestone:       
Component:  general      |     Version:  0.9  
 Severity:  normal       |   Keywords:               |  
-------------------------+--------------------------------------------------
 Today you can add virtual hosts like this

 <VirtualHost _default_:80>
         ServerName myvirtualhosts
         ServerAlias *
         VirtualDocumentRoot     /mywebs/%0/public_html
 </VirtualHost>


 But if I want to add virtual SVN's and trac's to my users like

 <VirtualHost _default_:80>
         ServerName myvirtualhosts
         ServerAlias *
         VirtualDocumentRoot     /mywebs/%0/public_html
         <Location /SVN>
                 DAV svn
                 SVNParentPath /mywebs/%0/SVN/svnroot
                 Order allow,deny
                 Allow from all
         </Location>
         <Location /proj>
                 SetHandler mod_python
                 PythonHandler trac.web.modpython_frontend
                 PythonOption TracEnvParentDir /mywebs/%0/SVN/tracroot
                 #PythonOption TracUriRoot /
                 Order allow,deny
                 Allow from all
         </Location>
 </VirtualHost>

 /Jacob

-- 
Ticket URL: <http://projects.edgewall.com/trac/ticket/2370>
The Trac Project <http://trac.edgewall.com/>


More information about the Trac-Tickets mailing list