Edgewall Software
Modify

Ticket #2370 (closed enhancement: invalid)

Opened 6 years ago

Last modified 5 years ago

Virtual hosts

Reported by: Jacob Owned by: jonas
Priority: normal Milestone:
Component: general Version: 0.9
Severity: normal Keywords:
Cc:
Release Notes:
API Changes:

Description (last modified by mgood) (diff)

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

Change History

comment:1 Changed 6 years ago by mgood

  • Description modified (diff)

(fixing description formatting)

comment:2 Changed 5 years ago by cboos

  • Resolution set to invalid
  • Status changed from new to closed

?

View

Add a comment

Modify Ticket

Change Properties
<Author field>
Action
as closed
The resolution will be deleted. Next status will be 'reopened'
to The owner will be changed from jonas. Next status will be 'closed'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.