main-local.php 529 B

1234567891011121314151617181920
  1. <?php
  2. // 线上
  3. if (getenv('YII_ENV') == 'production') {
  4. $config = [];
  5. } else { // 非线上
  6. $config = [
  7. 'bootstrap' => ['debug', 'gii'],
  8. 'modules' => [
  9. 'debug' => [
  10. 'class' => 'yii\debug\Module',
  11. 'allowedIPs' => [getenv('DEBUG_ALLOWED_IP','127.0.0.1')],
  12. ],
  13. 'gii' => [
  14. 'class' => 'yii\gii\Module',
  15. 'allowedIPs' => [getenv('GII_ALLOWED_IP','127.0.0.1')],
  16. ],
  17. ],
  18. ];
  19. }
  20. return $config;