Browse Source

add: echo to describe port forward

pull/32/head
Dikshant Adhikari 3 years ago
committed by GitHub
parent
commit
a09d4fa932
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      entrypoint.sh

1
entrypoint.sh

@ -52,6 +52,7 @@ fi
# Hack to allow upstream port forwarding through a VPN provider # Hack to allow upstream port forwarding through a VPN provider
if [[ -z "$PORT_FORWARD_DEST" && "$PORT_FORWARD_TO" ]]; then if [[ -z "$PORT_FORWARD_DEST" && "$PORT_FORWARD_TO" ]]; then
echo "Doing port forward from port ${PORT_FORWARD_TO} to destination port ${PORT_FORWARD_DEST}" >&2
iptables -t nat -I PREROUTING -p tcp --dport $PORT_FORWARD_DEST -j REDIRECT --to $PORT_FORWARD_TO iptables -t nat -I PREROUTING -p tcp --dport $PORT_FORWARD_DEST -j REDIRECT --to $PORT_FORWARD_TO
fi fi

Loading…
Cancel
Save