Roundup setup with mod_wsgi
Tonu Mikk <[email protected]>
| Newsgroups | gmane.comp.bug-tracking.roundup.user |
|---|---|
| Message-ID | <CABDFm8g=e1mwn-B5Les-qBp2pCKWfEyxj0oOL_MW0DBUUTBU7Q@mail.gmail.com> |
Hello,
I am trying to configure roundup with Apache mod_wsgi, but so far I haven't
succeeded. Here is what my setup looks like.
Tracker is installed in /swadm/roundup/trackers/support
In the config.ini the tracker web is set to oranges.drc.umn.edu
I have a file called oranges.py in /swadm/roundup/trackers with the
following content:
---
from roundup.cgi.wsgi_handler import RequestDispatcher
tracker_home = '/swadm/roundup/trackers/support'
application = RequestDispatcher(tracker_home)
---
The Apache virtual config has the following:
<VirtualHost *:443>
ServerName oranges.drc.umn.edu
WSGIScriptAlias / /swadm/roundup/trackers/oranges.py
WSGIDaemonProcess support.roundup group=support threads=25
WSGIProcessGroup support.roundup
<Directory /swadm/roundup/trackers>
<Files oranges.py>
Order allow,deny
Allow from all
</Files>
</Directory>
# SSL directives omitted for brevity
</VirtualHost>
When I try to access https://oranges.drc.umn.edu I get a 403 message:
Forbidden
You don't have permission to access / on this server.
I have created a group called "support" with the following content:
support:x:1006:tmikk,swadm,apache,mail
In the Roundup installation documentation for UNIX
<http://roundup.sourceforge.net/docs/installation.html#unix-environment-steps>
it
says:
"The tracker “db” directory should be chmod’ed g+sw so that the group can
write to the database, and any new files created in the database will be
owned by the group.
This is something I have not done yet. Can someone tell me what this
command would look like in my case. I am not entirely sure if I need to
run it against a folder or a file.
Is there anything else I need to change? Thank you!
--
Tonu Mikk
Adaptive Technologist | Disability Resource Center |
diversity.umn.edu/disability
University of Minnesota | umn.edu
[email protected] | 612-625-3307
_______________________________________________
Roundup-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/roundup-users