Apache Configuration
This Apache configuration is used to provide proxy services for the ISC demonstration environment. The forward proxy will enable the test bed to communicate with the external world in order to get updates, download RSS/ATOM feeds, and connect to Internet-based services. The reverse proxy will provide access to the test bed for external clients. A copy of the httpd.conf file is available.
Network Listeners
Listen 80 Listen isc-gateway:8080
Forward Proxy Configuration
<VirtualHost *:8080> ProxyRequests On <Proxy *> Order deny,allow Deny from all Allow from 192.168.2.0/255.255.255.0 </Proxy> CacheRoot "/var/apache2/2.2/proxy" </VirtualHost>
Reverse Proxy Configuration
<VirtualHost *:80> <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPreserveHost On ProxyPass / http://lb1/ ProxyPassReverse / http://lb2/ </VirtualHost>