Roundup Tracker - Issues

Message3877

Author imats
Recipients imats
Date 2009-09-14.06:03:58
Message-id <1252908240.04.0.404733586682.issue2550588@psf.upfronthosting.co.za>
In-reply-to
Hi there,

Simply just trying to get Apache2.2 to host the roundup web interface. 
I have followed the documentation and copied the following details and 
applied them for my scenario, however I get a 403 Forbidden response.

In httpd.conf:
#################################################
# Roundup Issue tracker
#################################################
# enable Python optimizations (like 'python -O')
PythonOptimize On
# let apache handle static files from 'html' directories
AliasMatch /roundup/(.+)/@@file/(.*) C:/Roundup/$1/html/$2
# everything else is handled by roundup web UI
AliasMatch /roundup/([^/]+)/(?!@@file/)(.*) C:/Roundup/$1/dummy.py/$2
# roundup requires a slash after tracker name - add it if missing
RedirectMatch permanent ^/roundup/([^/]+)$ /roundup/$1/
# common settings for all roundup trackers
<Directory C:/Roundup/*>
  Order allow,deny
  Allow from all
  AllowOverride None
  Options None
  AddHandler python-program .py
  PythonHandler roundup.cgi.apache
  # uncomment the following line to see tracebacks in the browser
  # (note that *some* tracebacks will be displayed anyway)
  PythonDebug On
</Directory>
# roundup tracker homes
<Directory C:/Roundup/>
  PythonOption TrackerHome C:/Roundup/
  PythonOption TrackerLanguage ru
</Directory>

Help is much appreciated thank you :)
History
Date User Action Args
2009-09-14 06:04:00imatssetmessageid: <1252908240.04.0.404733586682.issue2550588@psf.upfronthosting.co.za>
2009-09-14 06:04:00imatssetrecipients: + imats
2009-09-14 06:03:59imatslinkissue2550588 messages
2009-09-14 06:03:58imatscreate