针对后端启动多个服务,接口需要统一请求路径时,可以使用nginx进行请求地址反向代理。
1.下载: nginx
2.下载完成后解压,找到配置文件nginx.conf(在解压文件的conf目录中),在http中增加以下示例代码,保存配置文件。
注意,只需要复制下面中的server,aaa、bbb是你自己需要代理请求地址的前缀(可以看做标识),开发接口的时候时候需要遵守该命名规则。
http { ............ server { listen 9001; server_name localhost; location ~ /aaa/ { proxy_pass http://localhost:8201; } location ~ /bbb/ { proxy_pass http://localhost:8202; } } }
3.在nginx.exe所在目录中,打开dos窗口,执行nginx.exe,启动nginx。(或者直接双击nginx.exe启动)
注意:nginx.exe -s stop关闭nginx。
4.使用配置文件中新加入的代理接口9001,接口aaa和接口bbb可以正常访问了!
脚踏实地行,海阔天空飞~