Aiden hai 7 meses
pai
achega
3b7ecb4748
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      scripts/openvpn-install.sh

+ 2 - 2
scripts/openvpn-install.sh

@@ -627,11 +627,11 @@ function installOpenVPN() {
 
 		# Behind NAT, we'll default to the publicly reachable IPv4/IPv6.
 		if [[ $IPV6_SUPPORT == "y" ]]; then
-			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused https://ipinfo.ipidea.io); then
+			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused https://ipinfo.io/ip); then
 				PUBLIC_IP=$(dig -6 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"')
 			fi
 		else
-			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused -4 https://ipinfo.ipidea.io); then
+			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused -4 https://ipinfo.io/ip); then
 				PUBLIC_IP=$(dig -4 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"')
 			fi
 		fi