Tag Archives: apache

用apache给ghs.google做反向代理

<VirtualHost *:80>

ServerName isme.com.ru

ProxyRequests off

<Proxy *>

Order deny,allow

Allow from all

</Proxy>

ProxyPreserveHost on

ProxyPass / http://ghs.google.com/

ProxyPassReverse / http://ghs.google.com/

</VirtualHost>

<VirtualHost 173.212.195.x:80>

ProxyRequests off

<Proxy *>

Order deny,allow

Allow from all

</Proxy>

ProxyPreserveHost on

ProxyPass / http://ghs.google.com/

ProxyPassReverse / http://ghs.google.com/

</VirtualHost>

4