Good morning, i tried something yesterday, by removing the 3 virtualhost
that i have setup, those 3 VH are made to make a route from other servers
where i have hosting my pages.

It's like a layer 3 model, where i have a firewall then other server where
the web pages are served and other server where is hosting the databases.

So, where I'm having troubles is in the firewall, where he redirect the URL
to the other server where the web pages are served.

When i leave the 3 VH the server takes the half of the bandwidth from the
ISP, when i remove them the bandwidth of the ISP is normal again.

I think the I'm making something wrong with the directives of mod_proxy.
Here a i post you part of the code witch I'm using:

<VirtualHost xxx.xxx.xxx.xxx>
ServerName www.site1.com
ProxyPreserveHost on

ProxyPass / http://192.160.15.12/
ProxyPassReverse / http://192.160.15.12/
</VirtualHost>

<VirtualHost xxx.xxx.xxx.xxx>
ProxyRequests On
ProxyVia On

ServerName www.site2.com

ProxyPreserveHost on
ProxyPass / http://192.160.15.12/
ProxyPassReverse / http://192.160.15.12/
</VirtualHost>


I guess that something that i put here, maybe just maybe, be wrong!!!

thank you so much.

Reply via email to