我已经在 ubuntu 中使用 django、wsgi 和 nginx 创建了一个 web 服务。(http://127.0.0.1:8000)。我的网络连接是 NAT。我想从 VMWare 中的 Linux 访问此 Web 服务。我该怎么做?
答案1
不要使用NAT
,而是在您的 VM 网络适配器中使用Bridge
。还要配置您的 Web 服务和/或 nginx 以监听 VM 的真实 IP,而不仅仅是localhost
。
我已经在 ubuntu 中使用 django、wsgi 和 nginx 创建了一个 web 服务。(http://127.0.0.1:8000)。我的网络连接是 NAT。我想从 VMWare 中的 Linux 访问此 Web 服务。我该怎么做?
不要使用NAT
,而是在您的 VM 网络适配器中使用Bridge
。还要配置您的 Web 服务和/或 nginx 以监听 VM 的真实 IP,而不仅仅是localhost
。