What's SPDY? See Wiki
什么是SPDY?请看Wiki
Nginx finally support spdy protocol in the 1.3.x version, but only preliminary support and may not be very stable, use it at your own risk.
Nginx终于在最新的1.3.x版本下支持spdy协议了,不过还很初级而且可能不太稳定,请自担风险。
Have a little test with ifttt which I finally got an account. If it is correct, this post should been automatically linked by Facebook. Let's see!
Google is a really good and useful company! I registered Google Apps just for fun. And now I have the email address ended with @zhujunsan.net without setting up a mail server.
But one thing disturbed me is the GFW... It start dropping packages when someone access the Gmail server. Not to mention that all the IP addresses of ghs.google.com are unavailable in the China main land. So sad...
So how can I access mail.zhujunsan.net with out using ghs.google.com?
Do the nginx rewrite.
Here's the conf file:
[code='cpp']
server {
listen 80;
server_name mail.yourdomain;
rewrite ^(.*) https://mail.google.com/a/yourdomain permanent;
}
[/code]
Include it into the nginx main conf file and reload the nginx. And it should work.
Google Docs and other services are very the same. Hope it's helpful.