I'm not really a networking person. I'm an off-site software engineer 
mom who works from home. I've been given the task of hosting and 
managing or CM and RM systems for our team. I managed to get Trac to 
work with Subversion running on port 8000 with tracd. But I want to get 
it to run through Apache so I can use SSL and link it in with a custom 
project portal. Trac is only one aspect of it. I keep getting redirect 
errors for my Trac project. Any ideas would be great. Below you will 
find my virtual-hosts config. Oh, I know python is working because I did 
a basic "Hello World" test on a different VH on the same Apache server, 
not the trac VH. I haven't even started with Trac permissions yet. I 
just wanted to get the site visible first. I must say that this is the 
first Apache server I've ever run (I usually work IIS projects), so I 
know I must be doing something obviously stupid.

Thank you kindly,
Julie

---------------------------------------
virtual hosts.conf
---------------------------------------
NameVirtualHost *:80

<VirtualHost itt-trac.tittlers.net:80>
    ServerName itt-trac.tittlers.net
    DocumentRoot "C:/Trac"
    <Location />
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir "C:/Trac"
        PythonDebug on
        PythonOption TracUriRoot /
    </Location>
</VirtualHost>

<VirtualHost itt.tittlers.net:80>
    ServerName itt.tittlers.net
    RedirectPermanent / https://itt.tittlers.net/
</VirtualHost>


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to