1.修改配置文件
# 服务端口 server.port=8160 ..... .... . # 微信开放平台 重定向url wx.open.redirect_url=http://localhost:8160/api/ucenter/wx/callback2.nginx里指定到8160端口(前端后面要用)
location ~ /educenter/ {
proxy_pass http://localhost:8160;
}
location ~ /api/ {
proxy_pass http://localhost:8160;
}



