| 1234567891011121314151617181920 |
- <?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')],
- ],
- 'gii' => [
- 'class' => 'yii\gii\Module',
- 'allowedIPs' => [getenv('GII_ALLOWED_IP','127.0.0.1')],
- ],
- ],
- ];
- }
- return $config;
|