Hi
Always good to have closure to a problem for the mailing list archives.
How did you end up fixing it?
So, this is the response I got from someone on accu-general who has a similar setup:
<VirtualHost *:80> .... <Location /jenkins> ProxyPass http://127.0.0.1:8077/jenkins ProxyPassReverse http://127.0.0.1:8077/jenkins </Location> </VirtualHost>
I pass --prefix=/jenkins as an argument to Jenkins (in my case by adding it to /etc/default/jenkins). In the Jenkins configuration screen I've set the Jenkins URL to http://jezuk.dnsalias.net/jenkins (ie the externally visible URL), although I'm not entirely sure what it does with this information.
And this was my response:
Ok, so this made me look at my configuration more closely. I'm running apache and jenkins on two different VMs. I'd forgotten that on the jenkins VM I was already using apache to forward port 80 to jenkins. So I've now added the prefix and reconfigured apache on the other box to point to the jenkins port, rather than port 80 and all seems to be happy now. Thanks!
Anyone know how to fix the problem with TeamCity?