seebyyu
Results
1
issues of
seebyyu
### 场景 同一套代码,可以跑不同的配置 理想情况是 修改 config/swoole.php 的 http.port 写到 env 里面 ```php 'http' => [ 'enable' => true, 'host' => '0.0.0.0', 'port' => env('SWOOLE_PORT', 8080), 'worker_num' => swoole_cpu_num(), 'options' =>...