front end proxy for http://example-dev.indexdata.com/
[mkws-moved-to-github.git] / examples / apache2 / example-dev-px
1 <VirtualHost *:80>
2     ServerName example-dev.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://dart:80/
13     ProxyPassReverse  / http://dart:80/
14
15     # These are the logs for the proxying operation
16     ErrorLog /var/log/apache2/example-dev-px-error.log
17     CustomLog /var/log/apache2/example-dev-px-access.log combined
18 </VirtualHost>
19