main-local.php 316 B

12345678910111213141516
  1. <?php
  2. $config = [
  3. 'bootstrap' => ['debug', 'gii'],
  4. 'modules' => [
  5. 'debug' => [
  6. 'class' => 'yii\debug\Module',
  7. 'allowedIPs' => [getenv('DEBUG_ALLOWED_IP','127.0.0.1')],
  8. ],
  9. 'gii' => [
  10. 'class' => 'yii\gii\Module',
  11. 'allowedIPs' => [getenv('GII_ALLOWED_IP','127.0.0.1')],
  12. ],
  13. ],
  14. ];
  15. return $config;