Hello,
I developed a local server (where the purpose is to be on a local computer) in Node.JS and created a graphical interface, a client for this server, in REACT.JS. I was trying to host this interface on netlify, until then without any problems. However, the communication between the server and the client does not happen because the server was implemented in http and the client being hosted on netlify is https. With this, the communication cannot be established. The error that appears to me is this:
Mixed Content: The page at '' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint ''. This request has been blocked; the content must be served over HTTPS.
The connection between server and client is supported via socket.io as such, and if I am not mistaken the communication can only be done via http.
Is there anything I can do?
Any help is welcome.