所谓正向代理,是指代理服务器作为一个分发节点将http请求转发给内网的业务节点。
在windows下实例如下:
1、下载安装包:nginx-1.7.9.zip;
2、解压后,执行start nginx.exe;备注:之前放在比较深的目录中,执行失败;
3、执行完成后,能在http://localhost 下看到nginx主页;
4、配置正向代理,修改conf/nginx.conf:
server { listen 80; //监听的端口 server_name localhost; //外部访问的域名,如www.xxx.com location / { proxy_pass http://127.0.0.1:3000; //上述访问被转发的地址 }
在上例配置中,访问localhost:80端口的http请求,会转发至3000端口(node的web项目)
时间: 2024-12-25 14:41:44