Browse Source

add: port forward to entrypoint

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

5
entrypoint.sh

@ -50,6 +50,11 @@ if [[ -z "$LOCAL_SUBNETS" && "$LOCAL_SUBNET" ]]; then
LOCAL_SUBNETS=$LOCAL_SUBNET
fi
# Hack to allow upstream port forwarding through a VPN provider
if [[ -z "$PORT_FORWARD_DEST" && "$PORT_FORWARD_TO" ]]; then
iptables -t nat -I PREROUTING -p tcp --dport $PORT_FORWARD_DEST -j REDIRECT --to $PORT_FORWARD_TO
fi
for local_subnet in ${LOCAL_SUBNETS//,/$IFS}
do
echo "Allowing traffic to local subnet ${local_subnet}" >&2

Loading…
Cancel
Save