아마존

Getting Public IP Address from AWS (PHP)

When using Amazon servers, the server IP displayed is typically a private IP. So, I created this script to fetch the public IP address. <? if(in_array(substr($_SERVER['SERVER_ADDR'], 0, 3), array('172'))) if(strrpos(gethostname(), '.compute.internal')!==false) $_SERVER['SERVER_ADDR'] = file_get_contents('http://169.254.169.254/latest/meta-data/public-ipv4'); echo $_SERVER['SERVER_ADDR']; ?>