Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save funkytaco/40703a11923790c4468ae05124f038b5 to your computer and use it in GitHub Desktop.
Save funkytaco/40703a11923790c4468ae05124f038b5 to your computer and use it in GitHub Desktop.
location /apps/hello {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://192.168.99.100:8080;
proxy_read_timeout 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment