Linux系统下以守护进程方式运行默认开启文件也会被监控
尝试修改config
目录下的配置文件,会被自动更新
app.php
配置,已经关闭debug模式
return [
'debug' => false,
'error_reporting' => E_ALL,
'default_timezone' => 'Asia/Shanghai',
'request_class' => Request::class,
'public_path' => base_path() . DIRECTORY_SEPARATOR . 'public',
'runtime_path' => base_path(false) . DIRECTORY_SEPARATOR . 'runtime',
'controller_suffix' => 'Controller',
'controller_reuse' => true,
];
"workerman/webman-framework": "^1.5.8",
https://www.workerman.net/doc/webman/others/monitor.html
有单独的配置enable_file_monitor控制
但是我这边配置的
enable_file_monitor
返回值一直都是false
,不应该自动更新才对线上先手动设置为false吧,配置里表达式可能有问题
提交了个PR,看看是否需要合并 https://github.com/walkor/webman/pull/380
https://github.com/walkor/webman/commit/675b616df05ad044bd91ba21d7594efb092f9b52
改配置吧,是否开启文件监控应该在配置中设置。
哈哈!速度一个快