Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@chrisivens
Created August 15, 2017 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisivens/37a611e1c47dbe929e86a953cfbf318f to your computer and use it in GitHub Desktop.
Save chrisivens/37a611e1c47dbe929e86a953cfbf318f to your computer and use it in GitHub Desktop.
Proxy from nginx to preserve original host and ip
proxy_redirect off;
proxy_set_header Host $host:$server_port;
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