Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网络服务器中使用“Rails s”运行我的 Rails 应用程序,它说它正在运行,http://0.0.0.0:3000但我似乎找不到如何在我的浏览器中访问它。
http://0.0.0.0:3000
有没有办法找到与此 IP 地址和端口关联的域名?
尝试定位
http://localhost:3000/
这是默认的 Rails 本地主机页面
在这种情况下,应该在您的服务器上打开端口 3000。
但强烈建议不要在生产服务器上使用默认的 Rails 服务器 (Webrick)。相反,您应该使用Passenger + nginx (apache)。或者使用Thin或Unicorn或Puma代替 Webrick(使用 apache 或 nginx 作为静态 Web 服务器)。
当你在你的网络服务器上说它时,你的意思是:
0.0.0.0
http://192.168.0.2:3000