On Oct 6, 5:12 am, demjanenko <[EMAIL PROTECTED]> wrote:
> On Oct 5, 11:14 pm, flyincognito <[EMAIL PROTECTED]> wrote:> I managed to get 
> this going - I played with it a bit, and my paths
> > must have been set up wrong.
>
> Hi!
>
> I have similar problem. Can you post your corrected vhost config?

No problem - I believe that the issue was in the dbjlets path. The
working virtual host entry is below:


<VirtualHost *:80>
        ServerName {domain}
        DocumentRoot /var/www/rb/reviewboard/htdocs

        # Error handlers
        ErrorDocument 500 /errordocs/500.html

 # Serve django pages
        <Location "/">
                PythonPath "['/usr/lib/python2.4/site-packages/
django','/var/www/rb/','/var/www/rb/reviewboard'] + sys.path"
                SetEnv PYTHON_EGG_CACHE /var/cache/www/pythoneggs
                SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
                SetHandler mod_python
                PythonHandler django.core.handlers.modpython
                PythonAutoReload Off
                PythonDebug Off
         </Location>

        # Serve static media without running it through mod_python
        # (overrides the above)
        <Location "/media">
                SetHandler None
        </Location>
        <Location "/errordocs">
                SetHandler None
        </Location>

        # Alias static media requests to filesystem
        Alias /media /var/www/rb/reviewboard/htdocs/media
        Alias /errordocs /var/www/rb/reviewboard/htdocs/errordocs
</VirtualHost>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to