Skip to content

Instantly share code, notes, and snippets.

@IngwiePhoenix
Created February 16, 2016 05:51
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 IngwiePhoenix/19631bd07af62d23b8f3 to your computer and use it in GitHub Desktop.
Save IngwiePhoenix/19631bd07af62d23b8f3 to your computer and use it in GitHub Desktop.
# Proxy
# Really basic, does HTTP stuffles.
# @var $REMOTE_PORT : Remote HTTP port
location / {
proxy_pass http://127.0.0.1:$REMOTE_PORT;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# Removed my IP and domain for obvious reasons.
server {
listen 80;
server_name cloud.example.com;
# Proxy
set $REMOTE_PORT 12080;
include basic_proxy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment