From fd707bea3960f04ac98368c9eef3276e0b78ae67 Mon Sep 17 00:00:00 2001 From: Michael Roberts Date: Tue, 26 May 2020 10:28:50 -0400 Subject: [PATCH] Update openvpn-install.sh Updated openvpn-install.sh to use ip.me since ifconfig.co is not working --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 4a9e347..25b90db 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -618,7 +618,7 @@ function installOpenVPN() { if [[ $IPV6_SUPPORT == "y" ]]; then PUBLIC_IP=$(curl https://ifconfig.co) else - PUBLIC_IP=$(curl -4 https://ifconfig.co) + PUBLIC_IP=$(curl -4 https://ip.me) fi ENDPOINT=${ENDPOINT:-$PUBLIC_IP} fi