Skip to content

Instantly share code, notes, and snippets.

@BlakePetersen
Created January 2, 2015 06:33
Show Gist options
  • Save BlakePetersen/155ca481ec4327533f4c to your computer and use it in GitHub Desktop.
Save BlakePetersen/155ca481ec4327533f4c to your computer and use it in GitHub Desktop.
nginx Proxy Pass
server {
server_name local.example.com;
listen 80;
location / {
proxy_pass http://localhost:1234;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment