mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2026-04-25 15:25:55 +03:00
[GH-ISSUE #125] Only placeholders loading forever in dashboard, organizations, repositories and activity log #62
Labels
No labels
bug
documentation
enhancement
help wanted
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/gitea-mirror#62
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sylvainadm on GitHub (Oct 23, 2025).
Original GitHub issue: https://github.com/RayLabsHQ/gitea-mirror/issues/125
Hello there,
First all - thanks for that great project, I love it!
I’ve successfully set it up (via docker compose) and was able to view all my starred repos yesterday. Started mirroring, and after that the dashboard, organizations, repositories and activity log pages are just showing placeholders and seemingly loading forever.
In the background, the logs show that everything is mirroring as it should (although reaching GitHub’s API query limits).
I’m not sure if there’s anything I need to configure differently in my .env or docker-compose.yml file. The only config I have are the AUTH URL, origins and public URL.
Thanks!
Sylvain
@arunavo4 commented on GitHub (Oct 23, 2025):
Hi @sylvainadm are you able to view the mirrored repos in gitea? if that works well. when you open the gitea mirror app check console logs that might point us to the problem.
@sylvainadm commented on GitHub (Oct 23, 2025):
Thanks @arunavo4 !
Here's the Firefox console logs:
The docker compose logs:
No error specifically in the docker compose logs (I removed some characters and the user ID although it doesn't really matter).
On the network tab, I have this:
The application runs behind an Nginx Proxy Manager, with Websocket support enabled.
I have the repos showing properly in my Gitea instance.
@arunavo4 commented on GitHub (Oct 23, 2025):
@sylvainadm so the problem is at the proxy layer (the app is deployed behind Nginx Proxy Manager with only websocket
support enabled).
Try these :
@sylvainadm commented on GitHub (Oct 23, 2025):
Ah that was it. First time I come across SSE for self hosting (or at least that I could actually resolve).
Changed my Nginx Proxy Manager config and it’s now working like a charm :). Thanks so much for your help!
I used this in my advanced proxy config: https://medium.com/@dsherwin/surviving-sse-behind-nginx-proxy-manager-npm-a-real-world-deep-dive-69c5a6e8b8e5
Here’s an example from that article:
@arunavo4 commented on GitHub (Oct 24, 2025):
@sylvainadm awesome! in future other people with SSE issues will find it helpful.