server { listen 8081; //代理后的端口 server_name localhost;//代理后的地址 //代理的接口的关键名 location ~/api/issue-business-server{ proxy_pass http://192.168.110.39:1000;//代理前的地址 index index.html index.htm; } }
server { listen 8081; //代理后的端口 server_name localhost;//代理后的地址 //代理的接口的关键名 location ~/api/issue-business-server{ proxy_pass http://192.168.110.39:1000;//代理前的地址 index index.html index.htm; } }