Skip to content

Instantly share code, notes, and snippets.

@ricardovf
Created February 14, 2012 20:05
Show Gist options
  • Save ricardovf/1829826 to your computer and use it in GitHub Desktop.
Save ricardovf/1829826 to your computer and use it in GitHub Desktop.
Redirect port 80 to 8080 on OSX
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.meritt.oitenta</string>
<key>Program</key>
<string>/sbin/ipfw</string>
<key>ProgramArguments</key>
<array>
<string>/sbin/ipfw</string>
<string>add 100 fwd 127.0.0.1,8080 tcp from any to me 80</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment