Ryan> I just see that you want to run this on a Windows 2003 server
the Apache2 settings I provided is running on that too
but if you want to have Apache2 serving Trac and still use IIS (for ex
to run .NET stuff)
you will need to put Apache2 as the front web server
listening on all 80 ports
then use this king of reverse proxy setting
<VirtualHost *:80>
ServerName www.domain.com
ProxyPreserveHost On
ProxyPass / http://www.domain.com:8080/
ProxyPassReverse / http://www.domain.com:8080/
</VirtualHost>
in IIS just force www.domain.com to listen on 8080
and with that you cna have
http://projects.domain.com (Apache2 serving Trac)
and
http://www.domain.com (IIS6 serving whatever else things)
cheers,
zwetan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-users
-~----------~----~----~----~------~----~------~--~---