Accessing IP:Port/ghost outside of host machine

Like so many of the other posts I’ve seen, I cannot access ghost on any machine other than the local install machine.

The instance is running on 192.168.1.90:2368, and I’d like to be able to access it from other machines within my LAN. What super simple thing am I doing wrong? 2368 has required associated firewall rules.

“url”: “http://192.168.1.90:2368”,
“server”: {
“host”: “127.0.0.1”,
“port”: 2368,
},

I have also tried switching the host and the URL as none of the other posts are very clear on which needs to be the machines IP.

You have Ghost listening on localhost - that’s probably not routable from outside your machine. Try switching to either the LAN IP (same as your listed URL) or else 0.0.0.0

I’ve tried both:
“url”: “http://192.168.1.90:2368”,
“server”: {
“host”: “192.168.1.90”,
“port”: 2368,
},

And

“url”: “http://192.168.1.90:2368",
“server”: {
“host”: “0.0.0.0”,
“port”: 2368,
},

And still get “The Site Cannot Be Reached” with both.

I’m stopping and restarting after each change.

Both advices from Cathy worked for me.
Did you clear the cache?
See also: this-site-cant-be-reached