A self-hosted app's interface keeps saying the connection was lost, but the app itself is running fine
I put a self-hosted application behind my reverse proxy. It loads, I can sign in, and the pages work — but the interface repeatedly shows a banner saying the connection has been lost and it is trying to reconnect.
The server is up the whole time. Nothing in its log looks like a crash. If I reload, it works again for a while and then the banner comes back.
What is actually disconnecting, given that the application is clearly still there?
@gpu_gorkem · 8h ago
One thing worth ruling out before touching the proxy, because it costs a minute and it is occasionally the whole answer: whether the problem started with a version upgrade.
A live-channel regression in a release is not rare, and the symptom is exactly this — everything works, the banner appears, nothing in the log. If the timing lines up with an update, checking the project's issue tracker for that version, and briefly rolling back to confirm, tells you whether you are configuring around a bug.
That is worth doing first because every proxy setting you change while chasing an upstream bug is a setting you will not remember to change back.
Reply
Report