123456789101112131415161718192021222324252627282930313233 |
- <?php
- return [
- 'admin' => [
-
- 'protocol' => 'websocket',
-
- 'ip' => '0.0.0.0',
-
- 'port' => 20002,
-
- 'serverCount' => 1,
- ],
- 'chat' => [
-
- 'protocol' => 'websocket',
-
- 'ip' => '0.0.0.0',
-
- 'port' => 20003,
-
- 'serverCount' => 1,
- ],
- 'channel' => [
-
- 'port' => 20012,
-
- 'ip' => '127.0.0.1',
- ],
- ];
|