Skip to content

Instantly share code, notes, and snippets.

@tom-a
Created May 1, 2018 18:13
Show Gist options
  • Save tom-a/612dd7b6b90797e1b876276a206b3c10 to your computer and use it in GitHub Desktop.
Save tom-a/612dd7b6b90797e1b876276a206b3c10 to your computer and use it in GitHub Desktop.
location / {
proxy_pass http://192.168.2.2:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
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