Move the SPDemo stuff into examples area ... but do we still need it at all?
[mkws-moved-to-github.git] / examples / apache2 / spdemo-px
1 <VirtualHost *:80> 
2    ServerName spdemo.indexdata.com
3    ServerAlias spdemo-dev.indexdata.com spdemo-devel.indexdata.com spdemo-sp.indexdata.com spdemo-pp2.indexdata.com spclient-dev.indexdata.com
4    
5    ErrorLog /var/log/apache2/spdemo-error.log
6    CustomLog /var/log/apache2/spdemo-access.log combined
7
8    DefaultType text/html
9  
10    ProxyRequests off 
11    ProxyPreserveHost On
12
13    <Proxy *>
14      Order deny,allow
15      Allow from all
16    </Proxy>
17
18    ProxyPass         / http://spdemo/
19    ProxyPassReverse  / http://spdemo/
20 </VirtualHost>
21