How can i change the BaseUrl on a Hudson behind a Proxy?
I'm running a Hudson installation behind a proxy. The problem is, that any url (email, jabber, tray app) in the web application is set to the local proxy and not to the virtual host. How can i fix that, is there any environment variable?
I have just found "Hudson Url" for email's, but thats all.
<VirtualHost *:8080>
ProxyPass / http://127.0.0.1:8070/
ProxyPassReverse / http://127.0.0.1:8070/
ProxyRequests Off
<Proxy http://127.0.0.1:8070/*>
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>