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.
我想在crostini 上运行一个实时服务器并在另一台计算机上访问它,这样我就可以在开发网站时看到它。我怎样才能做到这一点?只要我在同一个WiFi上,有没有办法可以公开本地主机?
编号localhost是容器本地的。
localhost
您需要说服您使用的服务器绑定到容器的外部接口。
如何做到这一点取决于您尝试使用的软件。
对于雨果,它看起来像:
hugo server --bind `hostname -I` --baseURL `hostname -I`
但这只会让您进入 chromebook 本身,使其在外部可见,您需要使用端口转发器
我的博文中有一些信息