Connecting to server from local network #167
Unanswered
wendallsan
asked this question in
Q&A
Replies: 1 comment 5 replies
-
A server hosting at "localhost:80" (which is an alias to "127.0.0.1:80") is only reachable by clients on the same machine. It actually skips a few networking layers. To make a server public, use "0.0.0.0:80" instead. edit: the default login procedure checks that the incoming connection is localhost, so you may want to adjus that. Either remove the check (if you can safely assume that the server is really local to the network), or replace it with an alternative authentication procedure. For the latter I don't have concrete examples, but keep an eye on #145. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm evaluating this as a tool for my household and have stood up a server which I can reach on the system running it at localhost:80, but not from other systems on the local network. I'm running the server on a Windows 11 system for the moment, and have open port 80 up in the Windows Firewall, so I THINK it should be open. Is there anything I can do to make this available on my local network?
Beta Was this translation helpful? Give feedback.
All reactions