Created
May 12, 2020 18:50
-
-
Save nhtzr/c61673eddd861384b1d2df7cd40a3b17 to your computer and use it in GitHub Desktop.
basic reversproxy for nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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