SukiT
October 6, 2025, 7:04am
1
Description
Server Setup Information
Version of Rocket.Chat Server: 7.10.0 CE
Operating System: Amazon Linux 2023
Deployment Method: docker-compose
Number of Running Instances: 1
DB Replicaset Oplog: Enabled
NodeJS Version: v22.16.0
MongoDB Version: v7.0.15
Proxy: Cloudflare
Firewalls involved:
Any additional Information
Web server: Nginx
Reverse proxy setup: Yes
Type of SSL/https certificates: Letsencrypt
Can not load workspace information. Has anyone else had this problem? How did I fix it?
reetp
October 6, 2025, 8:27am
2
Check the websocket. That is key.
Disable cloudflare & test.
If you search here you’ll find several instances where it is not properly set up and will cause issues.
SukiT
October 6, 2025, 9:39am
3
It’s the same when called without going through cloudflare proxy.
This my nginx config
location / {
proxy_pass http://backend ;
proxy_http_version 1.1;
proxy_set_header Host $host; #$http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forward-Proto $scheme; #https ;
proxy_set_header X-Nginx-Proxy true;
proxy_redirect off;
Connection timeout
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
proxy_connect_timeout 3600s;
}
reetp
October 6, 2025, 10:04am
4
Use their default nginx template for testing:
Make sure you are registered using a proper domain etc.
Check your docker logs.
This is the setting you need to check in the dev tools:
Might need to look at your compose/.env too.
SukiT
October 7, 2025, 4:34am
5
I checked and found that the domain name matches that I set. But I checked rocketchat container log, I found this log when I open admin information page.
{"log":"[2025-10-07T04:22:44.453Z] WARN xxxxxxxxxxxxx/BROKER: Service '$node.list' is not available.\n","stream":"stderr","time":"2025-10-07T04:22:44.453919727Z"}
reetp
October 7, 2025, 7:40am
6
Yup that looks wrong.
At a vague guess, and with a lack of detail, this is connectivity.
Looks like you still have cloudlare on.
Turn it off completely. You must get Rocket working correctly without it first.
Are you using the default nginx template as I suggested?
What is in your docker compose file & .env?
Please stop guessing and just provide the required info so you don’t become a X Y Info problem.
Also see here for how to document issues.
How to report issues effectively
SukiT
October 8, 2025, 2:05am
7
It’s fixed now, just restart the rocketchat after restarting the service ‘$node’ started.
Not sure what is causing this issue, haven’t changed any settings.
Thank you.