🌐 http://your-ip:8765/ui
The web dashboard provides a full management interface accessible from any browser — no installation needed on the remote device.
- Real-time server status, CPU, RAM, and player count
- Start, stop, and restart servers with one click
- Live console log viewer and command input
- Network bandwidth graphs per server
- Auto-refreshes every 5 seconds
- v1.2.5 Sortable server grid (A→Z, Z→A, by game, by status) — remembered in the browser
- v1.2.5 Live mini CPU graph on each running server's card
- v1.2.5.38 Player list panel — expand to see all online players with ping and connected time
- v1.2.5.38 Server notes — write and save per-server notes directly from the dashboard
- v1.2.5.38 Log download — download the full console log as a text file with one click
- v1.2.5.38 Scheduled tasks panel — view all scheduled tasks and trigger any of them manually
- v1.2.5.38 Improved mobile layout — larger touch targets, better wrapping on small screens
List all servers
curl -H "Authorization: Bearer YOUR_TOKEN" \
http://localhost:8765/api/servers
Start a server
curl -X POST \
-H "Authorization: Bearer YOUR_TOKEN" \
http://localhost:8765/api/servers/1/start
Send a console command
curl -X POST \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"command":"say Server restarts in 5 minutes"}' \
http://localhost:8765/api/servers/1/cmd