Re: reviewboard 1.6.1 with wsgi

2011-10-18 Thread Rohini Kumar Tharigonda
I changed SITE_ROOT = '/' to SITE_ROOT = '/reviewboard/' in /var/www/reviewboard/conf/settings_local.py Then changed WSGIScriptAlias "/reviewboard/" "/var/www/reviewboard/htdocs/ reviewboard.wsgi" to WSGIScriptAlias /reviewboard /var/www/reviewboard/htdocs/ reviewboard.wsgi/reviewboard It

Re: reviewboard 1.6.1 with wsgi

2011-10-14 Thread יונתן קינן
I got it to work in my personal laptop, I should note that you also need to change the settings file. /var/www/reviewboard/conf/settings_local.py You need to change SITE_ROOT from '/' to '/review/'(depends on the chosen sub directory) I also added reverse proxying so it could work with Bugzilla. I

Re: reviewboard 1.6.1 with wsgi

2011-10-12 Thread Stephen Gallagher
On Wed, 2011-10-12 at 00:59 -0700, Rohini Kumar Tharigonda wrote: > I do not want to install it as root. > I installed it in a sub directory. > it works fine only if make the follwing > WSGIScriptAlias "/" "/var/www/reviewboard/htdocs/ > reviewboard.wsgi" > instead of > > #WSGIScriptAlias

Re: reviewboard 1.6.1 with wsgi

2011-10-12 Thread Rohini Kumar Tharigonda
I do not want to install it as root. I installed it in a sub directory. it works fine only if make the follwing WSGIScriptAlias "/" "/var/www/reviewboard/htdocs/ reviewboard.wsgi" instead of #WSGIScriptAlias "/reviewboard/" "/var/www/reviewboard/htdocs/ reviewboard.wsgi" http://localhost/

Re: reviewboard 1.6.1 with wsgi

2011-10-11 Thread Kannaiyan Natesan
If you replace the config file generated by ReviewBoard installation. It will work file. Modifying the configuration will have other problems. Will you try to install it in the root path rather than a subdirectory path? If you root drive is /var/www/html/ Your config value will be WSGIScriptAlias

Re: reviewboard 1.6.1 with wsgi

2011-10-11 Thread Jon
Yes, I am encountering similar problems. I opened a thread but no one replied. I would love to get a working configuration that will allow me to set up review board as a non root site. On Oct 11, 11:59 am, Rohini Kumar Tharigonda wrote: > I am still having the same problem. > Any one have the sam

Re: reviewboard 1.6.1 with wsgi

2011-10-11 Thread Rohini Kumar Tharigonda
I am still having the same problem. Any one have the same problem ? On Sep 12, 10:40 am, Rohini Kumar Tharigonda wrote: > The following is my configuration.. > You can see that i commented   #WSGIScriptAlias "/reviewboard/" "/var/ > www/reviewboard/htdocs/reviewboard.wsgi". > After doing this it

Re: reviewboard 1.6.1 with wsgi

2011-09-11 Thread Rohini Kumar Tharigonda
The following is my configuration.. You can see that i commented #WSGIScriptAlias "/reviewboard/" "/var/ www/reviewboard/htdocs/reviewboard.wsgi". After doing this it started working. ServerName localhost DocumentRoot "/var/www/reviewboard/htdocs" # Error handlers ErrorDocumen

Re: reviewboard 1.6.1 with wsgi

2011-09-10 Thread Kannaiyan Natesan
This is my working version. ServerName internal.nq.corp DocumentRoot "/var/www/html/htdocs" # Error handlers ErrorDocument 500 /errordocs/500.html WSGIPassAuthorization On WSGIScriptAlias "/" "/var/www/html/htdocs/reviewboard.wsgi"

Re: reviewboard 1.6.1 with wsgi

2011-09-10 Thread Rohini Kumar Tharigonda
Following is the configuration in /var/www/reviewboard/conf/apache-wsgi.conf ServerName localhost DocumentRoot "/var/www/reviewboard/htdocs" # Error handlers ErrorDocument 500 /errordocs/500.html WSGIPassAuthorization On WSGIScriptAlias "/reviewboard/" "/var/www/reviewbo

Re: reviewboard 1.6.1 with wsgi

2011-09-10 Thread Christian Hammond
Can you attach your Apache configuration? Christian On Saturday, September 10, 2011, Rohini Kumar Tharigonda wrote: > Hi, > I installed reviewboard 1.6.1 on fedora 15. > I set site path to /var/www/reviewboard/, site root /reviewboard/ . > My expectation is , when i type http://localhost/revi