关于nginx的代理、正向代理、反向代理可以参考这个网址https://www.cnblogs.com/ysocean/p/9392908.html写的很详细,这里就不赘述了。
直接上我参考这篇文章进行web端nginx的反向代理配置流程
地址 :http://nginx.org/en/download.html
server { listen 60; server_name 192.168.199.203; location / { proxy_pass http://192.168.199.188:8066; index index.html index.htm index.jsp; } }
项目真实的访问地址是 http://192.168.199.188:8066
通过以上代码进行nginx的反向代理可以实现,通过http://192.168.199.203:60访问项目
nginx开启之后顺便重启一下,如果配置好之后访问不了,重启nginx一般会报错,可以解决部分问题
我在这里遇到了两个问题