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