_config.local.php 788 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. return [
  7. 'scopes' => [
  8. 'websites' => []
  9. ],
  10. /**
  11. * Shared configuration was written to config.php and system-specific configuration to env.php.
  12. * Shared configuration file (config.php) doesn't contain sensitive data for security reasons.
  13. * Sensitive data can be stored in the following environment variables:
  14. * CONFIG__DEFAULT__SOME__CONFIG__PATH_ONE for some/config/path_one
  15. * CONFIG__DEFAULT__SOME__CONFIG__PATH_TWO for some/config/path_two
  16. * CONFIG__DEFAULT__SOME__CONFIG__PATH_THREE for some/config/path_three
  17. */
  18. 'system' => [
  19. 'default' => [
  20. 'web' => [],
  21. 'general' => []
  22. ]
  23. ]
  24. ];