Skip to content

Instantly share code, notes, and snippets.

@nhtzr
Created May 12, 2020 18:50
Show Gist options
  • Save nhtzr/c61673eddd861384b1d2df7cd40a3b17 to your computer and use it in GitHub Desktop.
Save nhtzr/c61673eddd861384b1d2df7cd40a3b17 to your computer and use it in GitHub Desktop.
basic reversproxy for nginx
http {
server {
listen *:80;
location / {
proxy_pass http://localhost:8080/;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment