Re: How to set proxy for SVN repo

2017-01-04 Thread Mathews Thomas
I had the same issue. I was able to solve by setting proxy options in /var/www/reviews.example.com/data/.subversion/servers file Mathews On Thursday, July 9, 2015 at 1:05:16 PM UTC+5:30, Qi Luo wrote: > > What environment variable should I set? For Subversion or for Apache? > > I tried this > >

Re: How to set proxy for SVN repo

2015-07-09 Thread Qi Luo
What environment variable should I set? For Subversion or for Apache? I tried this os.environ['http-proxy-host'] = 111.192.151.125 os.environ['http-proxy-port'] = 8080 os.environ['http-proxy-username'] = username os.environ['http-proxy-password'] = password it didn't work. On Wednesday, July

Re: How to set proxy for SVN repo

2015-07-07 Thread Christian Hammond
Hi, Depending on your setup, you'll either need a SetEnv in your Apache config file, or you'll need to set the environment in your reviewboard.wsgi file (in $sitedir/htdocs/). You'll then need to restart the web server. See if that solves the problem. If not, we can look deeper into the setup.