Hello,
I am using Ipify API to see IP adresses in my project. However, when I run this code:
<?php
$ip = file_get_contents('https://api.ipify.org');
echo "My public IP address is: " . $ip;
?>
I get the project container’s IP. What am I doing wrong?