Cannot make http request to my VPS server from Google Chrome console.
It is possible to send request to server from browser directly by simply going to http://11.11.111.11:5000/test (with proper IP address) and get right response. And all the requests also working in my React app with await fetch('http://11.11.111.11:5000/test')
.
But if I try to make request from Chrome console, for example with fetch how it is shown in this answer, it doesn't work and gives me net::ERR_TIMED_OUT
error.
Will appreciate if someone could gladly explain to me what am I doing wrong ?