Linux系統(tǒng)下以守護(hù)進(jìn)程方式運(yùn)行默認(rèn)開(kāi)啟文件也會(huì)被監(jiān)控
嘗試修改config
目錄下的配置文件,會(huì)被自動(dòng)更新
app.php
配置,已經(jīng)關(guān)閉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",
http://wtbis.cn/doc/webman/others/monitor.html
有單獨(dú)的配置enable_file_monitor控制
https://github.com/walkor/webman/commit/675b616df05ad044bd91ba21d7594efb092f9b52
改配置吧,是否開(kāi)啟文件監(jiān)控應(yīng)該在配置中設(shè)置。