| 12345678910111213141516171819202122 |
- <?php
- // 线上
- if (getenv('YII_ENV') == 'production') {
- $config = [];
- } else { // 非线上
- $config = [
- 'bootstrap' => ['debug', 'gii'],
- 'modules' => [
- 'debug' => [
- 'class' => 'yii\debug\Module',
- 'allowedIPs' => [getenv('DEBUG_ALLOWED_IP','127.0.0.1')],
- // Debug 工具栏保留的历史请求条数,默认 50 条过少
- 'historySize' => 10000,
- ],
- 'gii' => [
- 'class' => 'yii\gii\Module',
- 'allowedIPs' => [getenv('GII_ALLOWED_IP','127.0.0.1')],
- ],
- ],
- ];
- }
- return $config;
|