2024-06-25 20:12:15 +00:00
|
|
|
# mc-server-manager
|
|
|
|
|
2024-06-27 15:58:40 +00:00
|
|
|
Simple web server where players can see a list of available servers, player
|
|
|
|
counts, and request to turn on a server if they have a passcode.
|
|
|
|
|
|
|
|
It consists of two components: a web server, and an agent program that runs on
|
|
|
|
the minecraft server hardware itself.
|
|
|
|
|
|
|
|
## Web Server
|
|
|
|
|
|
|
|
The web server's responsibility is to show the latest server status information
|
|
|
|
and provide a way for players to request to turn on a server.
|
|
|
|
|
|
|
|
## Agent
|
|
|
|
|
|
|
|
The agent will periodically inspect the status of all servers, and send that
|
|
|
|
data to the web server. The agent will also automatically shutdown servers
|
|
|
|
that have been inactive for more than 15 minutes.
|
|
|
|
|