Skip to content

Instantly share code, notes, and snippets.

@upsuper
Created November 16, 2011 13:57
Show Gist options
  • Save upsuper/1370112 to your computer and use it in GitHub Desktop.
Save upsuper/1370112 to your computer and use it in GitHub Desktop.
nginx GAE反向代理配置
location / {
proxy_redirect off;
proxy_set_header Host $host;
proxy_pass http://ghs.google.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment