Body:
Problem:
I have successfully started a Holochain sandbox using hc sandbox generate -r=9000
, and my conductor is running. However, when I run curl http://localhost:9000/
, I get the error:
curl: (52) Empty reply from server
What I Tried:
Checked that the conductor is running usinghc sandbox list
, and it shows an active sandbox.
Verified that the app is installed (test-app
).
Checked logs withhc sandbox logs
but didn’t see any obvious errors.
Restarted the sandbox withhc sandbox kill && hc sandbox generate && hc sandbox run
.
Expected Behavior:
I expected some response from the app on port 9000, but it’s empty.
Additional Info:
OS: [Windows 11]
Holochain version: 0.5.0 --dev 21[Runhc --version
hc-cli 0.5.0 --dev 21]
Installed using: [nix develop “github:holochain/holonix?ref=main”]
Question:
Do I need to explicitly expose HTTP routes in my DNA?
How can I check if the app is listening on the correct port?
Any ideas on what might be missing?