feat: connect via rcon

This commit is contained in:
2026-07-09 14:51:56 +02:00
parent d2c7fecd55
commit 9a3902ae96
13 changed files with 481 additions and 38 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'host' => env('MC_RCON_HOST', 'minecraft'),
'port' => (int) env('MC_RCON_PORT', 25575),
'password' => env('MC_RCON_PASSWORD'),
'timeout' => (float) env('MC_RCON_TIMEOUT', 5),
'access_command' => env('MC_RCON_ACCESS_COMMAND', 'whitelist add {username}'),
];