I found my way through the maze of config options to config trac behind apache.

----- in /etc/apache2/httpd.conf -----

<VirtualHost *:80>
  ServerName foo.example.org

  ProxyPass /trac http://localhost:8000/trac
  ProxyPassReverse /trac http://localhost:8000/trac
  ProxyPreserveHost on
</VirtualHost>


----- in /root/proj/fooTrac/conf/trac.ini -----

base_url = http://foo.example.org/trac
htdocs_location =


----- start tracd -----

/usr/bin/python /usr/bin/tracd -d \
   --auth=fooTrac,/root/proj/users.htdigest,example.org \
   --port 8000 \
   --protocol=http \
   -s \
   --base-path=/trac \
   /root/proj/fooTrac


Thanks,
Peter

--~--~---------~--~----~------------~-------~--~----~
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