Tag Archives: proxy

Subversion: Check out a project over http proxy server

Hi,

short post today. It is possible to anonymously checkout the latest version of a project over a http and a http proxy server. The only requierment is that the SVN respository must be available via http.

To define a proxy server open /etc/subversion/servers, locate the [global] section and add/edit the following properties:
Continue reading Subversion: Check out a project over http proxy server

Apache: Setting up a simple reverse proxy

Hello,

this post describes how to setup a reverse proxy for a host. All http requests to host reverseproxy.domain.org should deliver the content of www.domain.org at Port 8080.

First you have to enable the requiered modules in httpd.conf


LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

Then insert a virtual host directive:


<VirtualHost *>
    ServerName reverseproxy.domain.org
    ProxyRequests off
    ProxyPreserveHost On
    ProxyPass / http://www.domain.org:8080/
    ProxyPassReverse / http://www.domain.org:8080/
</VirtualHost>

That’s it.

Michael