Getting over a 426 upgrade required

最后都变了- 提交于 2021-01-29 08:35:28

问题


I've been working on a web app (front Angular, back Node/Express/Mongo) for a few months now.

I run Angular on localhost:4200 and Node on localhost:3000

Some people in our team are running the backend in a VM that runs on their computers.

So that the app works in both cases we've edited the windows hosts file to make the app point to the correct place (either the VM or the back on the local machine)

127.0.0.1 mysite

Developers using the VM changed 127.0.0.1 with their VM's IP.

Everything worked smoothly.

A few days ago, our company installed bitlocker on every PC and I believe it caused our setup to break for everyone not using the VM (which is not subject to bitlocker)

People working on localhost started receiving from the front app:

OPTIONS http://mysite:3000/auth/login 426 (Upgrade Required)

The requests are not even hitting the Node server. Looks like they're redirected to a websocket server?

If I change the requests to target localhost:3000 the app works again but we lose the setup for people working on the VM. (thus committing code becomes annoying if we need to change the base url each time)

I could make an environment for each case but it's not clean and I'd like to know why it suddenly broke.


回答1:


Try changing the port from 3000 to something else.

I just ran into this issue when a coworker tried running an express app we've been building on a Windows machine for the first time, as opposed to an EC2 instance. I've been using a Mac during development.

The issue seemed to be that 0.0.0.0:3000 was already mapped on company Windows machines. If you run netstat -an in a command prompt you may see it in use already.




回答2:


hello mate this usually happens due to protocol mismatch between the PC and server.TLS 1.0 and 1.1 were permanently deprecated on June 4 2018. I suspect you’re using something that still uses and old version of TLS.



来源:https://stackoverflow.com/questions/55045807/getting-over-a-426-upgrade-required

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!