需要Cloud9工作区IP地址才能访问Yii2的Gii

Need Cloud9 workspace IP address to access Yii2's Gii

我正在尝试访问 Yii2 框架的自动代码生成器 (Gii),我需要我所在的 Cloud9 工作区服务器的 IP 地址。 http://www.yiiframework.com/doc-2.0/guide-start-gii.html

我尝试从 CLI 执行 "echo $IP",它给了我一个 0.0.0.0 但这不起作用。当我尝试在此处添加它时:http://prntscr.com/8xvxax I get this "Forbidden 403" message: http://prntscr.com/8xvxz9

如何获得正确的 IP 地址???

"Open whatismyip.com in your browser, it should give you the right address. If all else fails, you can temporarily try allowing all addresses to access gii (add "*" 添加到列表中)。"

<<<<< 感谢 Beowulfenator

您可以从 Cloud9 终端使用 curl 来回显您的 VM 的外部 IP。有许多服务可以 return 您的 public IP。这里有一些:


curl icanhazip.com
curl ipecho.net/plain
curl ifconfig.me
curl api.ipify.org
'allowedIPs' => ['*']

会成功的!