AWSでの接続IP取得方法(PHP)
アマゾンのサーバーを使用している場合、表示されるサーバーのIPは通常プライベートIPです。
そのため、パブリックIPを取得するためのスクリプトを作成しました。
<?
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'];
?>











Leave a Reply