Edgewall Software
Modify

Opened 18 years ago

Closed 17 years ago

#2370 closed enhancement (invalid)

Virtual hosts

Reported by: Jacob Owned by: Jonas Borgström
Priority: normal Milestone:
Component: general Version: 0.9
Severity: normal Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description (last modified by Matthew Good)

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

Attachments (0)

Change History (2)

comment:1 by Matthew Good, 18 years ago

Description: modified (diff)

(fixing description formatting)

comment:2 by Christian Boos, 17 years ago

Resolution: invalid
Status: newclosed

?

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jonas Borgström.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jonas Borgström to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.