Skip to content

Instantly share code, notes, and snippets.

@zheng1
Created November 1, 2014 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zheng1/19efe0b2cf3c12270f9f to your computer and use it in GitHub Desktop.
Save zheng1/19efe0b2cf3c12270f9f to your computer and use it in GitHub Desktop.
nginx 正向代理
events {
worker_connections 1024;
}
http {
server {
resolver 8.8.8.8;
resolver_timeout 5s;
listen 80;
server_name "";
location / {
#echo "$scheme://$host$request_uri";
proxy_pass $scheme://$host$request_uri;
proxy_set_header Host $http_host;
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