Reverse proxy on apache2

  • Thread starter Thread starter Henze
  • Start date Start date
H

Henze

hey,
i work widh a virtual host where i had a website.
i can access to my website Monapp.com
when i try to configure apache widh reverse -proxy mod , the reponse time is too long ( in localhost )
here is my configuration !
Quote:
NameVirtualHost 192.168.206.2:80
<VirtualHost 192.168.206.2:80>

ServerName Monapp.com
ServerAlias .Monapp.com
DocumentRoot /var/www/Monapp.com
ProxyRequests off
ProxyPreservehost On
ProxyPass / (..... )Monapp.com/
ProxyPassReverse / (....)Monapp.com/

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/Monapp.com/>
DirectoryIndex index.html inscription.html
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all



</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
........

Continue reading...
 
Back
Top