Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Last active October 16, 2020 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/5b1bd9d9fc82cd09248a20ebc8fe9593 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/5b1bd9d9fc82cd09248a20ebc8fe9593 to your computer and use it in GitHub Desktop.
http {
server {
# listen to the 15672 port on this server
listen 15672 default_server;
# rule on the site root
location / {
# proxy HTTP request to master node on port 15672
proxy_pass http://192.168.0.24:15672;
}
}
# Other default configurations ommitted for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment