| 12345678910111213141516 |
- <?php
- $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;
|