I've a Node-TS based Opensource ERP Gauzy deployed and running in a Windows server 2019 and I want to allow access and connect a domain to this app so that it can be accessed from anywhere by any number of users. Reason for windows server is this app just doesn't work with HTTPS in Ubuntu, wasted more than two weeks in that.
The problem is I've not found any link/resource mentioning the same.
Because the app runs two servers at the same time, one for the frontend and one for the backend, according to the author, it's better to use two sub-domains of a single domain which I already did.
I can't even access the running server using the server's IP as the domain as in http://ip:3000, it says the server refused to connect so, there's a missing network setting in the server that I don't know about.
Things I tried:
- Disabling Firewall.
- Allowing private and public network to the app.
- Allowing private and public network to the Node. (a solution in some answers)
The solution required: Access Node app from any computer and use a domain instead of the server's IP for it.