Last active
November 27, 2016 12:49
-
-
Save henno/67cfeff024042c4db8723983347b8051 to your computer and use it in GitHub Desktop.
Forward remote web server port 9000 to localhost using SSH for debugging code running on remote server
This file contains hidden or 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
#!/bin/sh | |
# Execute this on your local development machine | |
ssh -R 9000:localhost:9000 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment