Hi..
I was wondering if it was possible to have multiple proxies under one virtual host (unlike the listing below)? I am going to be using a reverse proxy server. Example below:
</VirtualHost>
##
## SSL Virtual Host Context
##
<VirtualHost *:443>
#
# Proxy allowed only from certain IP ranges.
#
<Proxy *>
#
# .
#
Order Deny,Allow
Deny from all
# Allow from
# Allow from
Allow from (IP range listed here)
</Proxy>
#
SSLProxyEngine on
# General setup for the virtual host
DocumentRoot "/var/www/html
ServerName testserver1.mycompany.com
ErrorLog /etc/httpd/logs/testserver1-error_log
TransferLog /etc/httpd/logs/testserver1-access_log
#
Is it possible to have multiple proxies listed under this one?
Thanks for your help!
SFDbgeek..