-
- Downloads
Hotfix deployment server
parent
996ae58e
No related branches found
No related tags found
Pipeline #100958 passed
Stage: fetch
Stage: deps
Stage: check
Stage: build
Stage: test
Stage: deploy
-
@alh1717 0.0.0.0 Doesn't work on Windows :(
(The server starts properly on localhost because node translates it, but you can't browse to it by that name so the terminal link is broken.)
What was the problem? Would
localhost
work?Edited by Nayeem Rahman -
This is only a hotfix. The issue is that setting the host to
127.0.0.1
orlocalhost
means only connections from localhost can access the server. Obviously this doesn't work for the deployed server - we want all of the internet to be able to connect. 0.0.0.0 is a pseudo-IP that means allowing connections from all interfaces.Really we need to decouple the binding address (0.0.0.0 for deployment and 127.0.0.1 for development) from the access address (eventually this might be a hostname rather than an IP).
Please register or sign in to comment