[Solved]Hi Experts, Please help me beat the Chinese Gov...
Simply speaking, I want to let the Chinese people visit my app engine website by using the domain name.
Here is the details:
1. I have a VPS which has two websites already. I configured it according to this article:
http://library.linode.com/lamp-guides/ubuntu-10.04-lucid/
2.I have linked a domain name
and CNAME
3. The rest of the world can visit example.appspot.com by using
4. I want to configure the Apache on my VPS so that the Chinese people can visit my app engine by domain name. After some search, I find the following code:
<virtualhost *:80="">ProxyRequests off
<proxy *="">Order deny,allow
Allow from all</proxy>
ProxyPreserveHost on
ProxyPass / http://ghs.google.com/
ProxyPassReverse / http://ghs.google.com/</virtualhost>
I dont know where should I put this code. I am using Apache2 and Ubuntu 10.04.
And After I put this code, Can I still access my two websites normally on the VPS?
Thanks a lot for your time and attention!
3 Replies
<virtualhost *:80="">ServerName example.com
ServerAlias www.example.com
ProxyRequests off
<proxy *="">Order deny,allow
Allow from all</proxy>
ProxyPreserveHost on
ProxyPass / http://ghs.google.com/
ProxyPassReverse / http://ghs.google.com/</virtualhost>
@Visame:
I have already solved this problem.
…for the Chinese people, right?