我试了webman自定义进程,不知道怎么定义协议和端口
'my-http' => [
'handler' => app\train\server\Course::class,
'listen' => 'socketIO://0.0.0.0:3120',
'count' => 8, // 进程数
'user' => '',
'group' => '',
'reusePort' => true,
'constructor' => [
'request_class' => \support\Request::class, // request类设置
'logger' => \support\Log::channel('default'), // 日志实例
'app_path' => app_path(), // app目录位置
'public_path' => public_path() // public目录位置
]
]
配置socketio协议会报错。
各位大佬,应该怎么办
https://www.workerman.net/a/1621 见这里,在自定义进程内加入相关逻辑即可。