Man, I am excited about Bongo! I was really excited about Hula until...
I thought I would give Bongo a look. I got to configuring the apache server (
http://www.bongo-project.org/Configuration/Webserver/Apache)before I got lost.

(I am using ubuntu 7.04) First, it directs me to bongo.conf in the /usr/share/doc/bongo/ directory but I have 3 folders in this (doc) directory none are named bongo. They are named bongoproject-data, bongoproject-web, and bongoproject and none of them contain any bongo.conf.
My next question probably has more to do with me never using apache before, but what file am I suppose to add this to?
<IfModule mod_python.c>
Alias /bongo_dir $prefix/share/bongo/htdocs/
<Location /bongo_dir>
Order allow,deny
Allow from all
Options +FollowSymlinks
</Location>
<Location /user>
Order allow,deny
Allow from all
SetHandler python-program
PythonPath "['$prefix/lib/python2.4/site-packages']+sys.path"
PythonHandler bongo.dragonfly.Server
PythonOption DragonflyUriRoot "/user"
PythonDebug On
</Location>
<Location /history>
Order allow,deny
Allow from all
SetHandler python-program
PythonPath "['$prefix/lib/python2.4/site-packages']+sys.path"
PythonHandler bongo.dragonfly.HistoryServer
PythonOption DragonflyUriRoot "/history"
PythonDebug On
</Location>
<Location /admin>
Order allow,deny
Allow from all
SetHandler python-program
PythonPath "['$prefix/lib/python2.4/site-packages']+sys.path"
PythonHandler bongo.hawkeye.Server
PythonOption HawkeyeUriRoot "/admin"
PythonOption HawkeyeTmplRoot "$prefix/share/bongo/hawkeye/psp"
PythonDebug On
</Location>
</IfModule>
The instructions for this part are as clear (to me anyways) as mud. Am I adding it to the dragonfly.html or the bongo.conf or even this mysterious apache script? btw Can someone tell me where to find this apache script it mentions?
Thanks for any help in advance!
