build之后部署到nginx,登陆时一直提示验证码失效,且返回按钮也失效
Closed this issue · 2 comments
Howar6htb commented
build之后部署到nginx,登陆时一直提示验证码失效,且返回按钮也失效,请问是怎么回事呢
nuonuoge commented
我在nginx上试了一下,估计是跨域问题,你可以这样解决,你把environment.prod.ts里面的apiUrl改成'', 然后在nginx配置时,把请求转到http://cangdu.org:8001 试一下
location / {
proxy_pass http://cangdu.org:8001;
}
Howar6htb commented
好的,谢谢