Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created July 28, 2010 16:55
Show Gist options
  • Save deedubs/495263 to your computer and use it in GitHub Desktop.
Save deedubs/495263 to your computer and use it in GitHub Desktop.
upstream backend-servers {
server 127.0.0.1:8080;
}
server {
server_name www.yourdomainhere.com;
location / {
proxy_pass http://backend-servers;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment