Created
June 16, 2014 08:58
Port redirection using ipfw
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
# this will redirect any incoming requests on port 80 to port 8080 | |
ipfw add 1443 fwd 127.0.0.1,8080 tcp from any to me 80 in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment