123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- return [
- 'scopes' => [
- 'websites' => []
- ],
- /**
- * Shared configuration was written to config.php and system-specific configuration to env.php.
- * Shared configuration file (config.php) doesn't contain sensitive data for security reasons.
- * Sensitive data can be stored in the following environment variables:
- * CONFIG__DEFAULT__SOME__CONFIG__PATH_ONE for some/config/path_one
- * CONFIG__DEFAULT__SOME__CONFIG__PATH_TWO for some/config/path_two
- * CONFIG__DEFAULT__SOME__CONFIG__PATH_THREE for some/config/path_three
- */
- 'system' => [
- 'default' => [
- 'web' => [],
- 'general' => []
- ]
- ]
- ];
|