Skip to content

Instantly share code, notes, and snippets.

@wvv8oo
Forked from zheng1/nginx.conf
Last active August 29, 2015 14:08
Show Gist options
  • Save wvv8oo/769363fe4c75920cceb2 to your computer and use it in GitHub Desktop.
Save wvv8oo/769363fe4c75920cceb2 to your computer and use it in GitHub Desktop.
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