Merge branch 'master' of ssh://git.indexdata.com:222/home/git/private/mkws
[mkws-moved-to-github.git] / examples / apache2 / mkws-examples-proxy
1 <VirtualHost *:80>
2     ServerName example.indexdata.com
3
4     ProxyRequests off
5     ProxyVia On
6     ProxyPreserveHost On
7     <Proxy *>
8       Order deny,allow
9       Allow from all
10     </Proxy>
11
12     ProxyPass         / http://caliban:80/
13     ProxyPassReverse  / http://caliban:80/
14
15     # These are the logs for the proxying operation
16     ErrorLog /var/log/apache2/mkws-examples-proxy-error.log
17     CustomLog /var/log/apache2/mkws-examples-proxy-access.log combined
18 </VirtualHost>