7

在我的windows中通过vm搭建了一台虚拟机,通过桥接方式连接网络。
假设windows的IP: 192.168.1.100
虚拟机IP: 192.168.1.200(设置固定IP)
虚拟机运行着一个应用,监听3000端口,没有使用nginx之前,一般是通过
http://192.168.1.200:3000/这种方式来访问的,设置反向代理代理后可以通过
http://example.com直接访问。

  1. 首先必须将example.com解析到192.168.1.200

    1)修改C:\Windows\System32\drivers\etc\hosts
    2) 修改网关路由器的/etc/hosts,windows机器不指定DNS服务器

  2. nginx反向代理配置

server {
        listen 80;
        server_name example.com;

        location / {
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header Host $http_host;
                proxy_pass http://127.0.0.1:3000;
        }
}
  • THE END

Honwhy
7k 声望96 粉丝

神兽党有福了