What these URLs are
When you create a Compute instance, Hivenet generates a temporary web URL:- Jupyter notebooks
- Fooocus
- Stable Diffusion UIs
- Dashboards running on port 8888
Why you might see “Bad Gateway”
Seeing a Bad Gateway error usually means one of these:- Your app isn’t running yet
- The app is listening only on ****
localhost, not on0.0.0.0 - The app is running on the wrong port (e.g. 7865 instead of 8888)
- HTTPS rate limit issues (rare, but happens with repeated rapid reloads)
Quick fixes
Here’s how to troubleshoot:-
Make sure your app is up
You should see HTML or a JSON response, not a timeout or error.
- Check the port Your app must run on port 8888 for the Hivenet URL to work.
-
Update binding address Some apps default to:
You need:Add
--host 0.0.0.0if you’re launching the app from the command line. - Restart the app if needed After changing host or port configs.