Created
April 25, 2016 06:16
-
-
Save hqman/65842a3e97b3e1c4651b9045e59d3059 to your computer and use it in GitHub Desktop.
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
ssh -p $port -vnNT -R 8000:localhost:8000 $username@$public_server_ip | |
upstream tunnel { | |
server 127.0.0.1:8000; | |
} | |
server { | |
listen 80; | |
server_name $public_server_ip; | |
location / { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $http_host; | |
proxy_redirect off; | |
proxy_pass http://tunnel; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment