[Buildbot-devel] A MinGW question and a subversion question

Brian Warner warner-buildbot at lothar.com
Fri Mar 17 01:19:00 UTC 2006


> Actually there's one more question: has anyone got any tips for 
> integrating the port 8010 buildbot website server with an existing 
> Apache server, using a subdomain virtual host and using port 80?

Let the buildbot listen on port 8010 as usual, then add something like the
following to your apache config:

ProxyRequests off
ProxyPass       /buildbot/      http://localhost:8010/

<Location /buildbot/>
  ProxyPassReverse /
  RequestHeader unset Accept-Encoding
</Location>

and turn on the 'proxy' and 'proxy_http' modules (and maybe also 'headers'?)
There are a couple of other lines I have commented out in the local config
where I'm doing something like this.. I'll include those here too in case you
find them useful:

#ProxyHTMLLogVerbose On
LogLevel Info

ProxyRequests off
ProxyPass       /buildbot/      http://localhost:8010/
#ProxyHTMLURLMap http://localhost:8010 /buildbot

<Location /buildbot/>
  ProxyPassReverse /
#  SetOutputFilter proxy-html
#  ProxyHTMLURLMap / /buildbot/
#  ProxyHTMLURLMap /buildbot /buildbot
  RequestHeader unset Accept-Encoding
</Location>


 -Brian




More information about the devel mailing list