Skip to content

Instantly share code, notes, and snippets.

@jonstuebe
Created February 15, 2016 06:09
Show Gist options
  • Save jonstuebe/24e20ea4989b7b0c0fd7 to your computer and use it in GitHub Desktop.
Save jonstuebe/24e20ea4989b7b0c0fd7 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name npm-test.dev;
location / {
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;
# Fix the “It appears that your reverse proxy set up is broken" error.
proxy_pass http://192.168.99.100:53058;
proxy_read_timeout 90;
proxy_redirect http://192.168.99.100:53058 http://npm-test.dev;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment