我在做一个Yii2项目。为此,我们让开发人员远程工作,因此我们必须向allowedIPs数组添加新的ip,以便调试器工具始终工作。
if(YII_DEBUG){ $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'app\components\Debugger\DebuggerService', 'allowedIPs' => [ '127.0.0.1', ], 'historySize' => 5000, 'controllerNamespace' => 'app\modules\v3\controllers\Debug' ]; }