Created
October 6, 2017 18:37
-
-
Save Leland/9225dcdec25b4e4cc445f76c2c31b92f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array ( | |
'backend' => | |
array ( | |
'frontName' => 'admin', | |
), | |
'db' => | |
array ( | |
'connection' => | |
array ( | |
'indexer' => | |
array ( | |
'host' => 'localhost', | |
'dbname' => 'magento_database', | |
'username' => 'magento_user', | |
'password' => 'magento_password', | |
'active' => '1', | |
'persistent' => NULL, | |
'model' => 'mysql4', | |
'engine' => 'innodb', | |
'initStatements' => 'SET NAMES utf8;', | |
), | |
'default' => | |
array ( | |
'host' => 'localhost', | |
'dbname' => 'magento_database', | |
'username' => 'magento_user', | |
'password' => 'magento_password', | |
'active' => '1', | |
'model' => 'mysql4', | |
'engine' => 'innodb', | |
'initStatements' => 'SET NAMES utf8;', | |
), | |
), | |
'table_prefix' => '', | |
), | |
'crypt' => | |
array ( | |
'key' => 'b08b12c008f009b7463b912a06e1a593', | |
), | |
'session' => | |
array ( | |
'save' => 'db', | |
), | |
'resource' => | |
array ( | |
'default_setup' => | |
array ( | |
'connection' => 'default', | |
), | |
), | |
'x-frame-options' => 'SAMEORIGIN', | |
'MAGE_MODE' => 'developer', | |
'cache_types' => | |
array ( | |
'config' => 1, | |
'layout' => 1, | |
'block_html' => 1, | |
'collections' => 1, | |
'reflection' => 1, | |
'db_ddl' => 1, | |
'eav' => 1, | |
'customer_notification' => 1, | |
'target_rule' => 1, | |
'full_page' => 0, | |
'config_integration' => 1, | |
'config_integration_api' => 1, | |
'translate' => 1, | |
'config_webservice' => 1, | |
), | |
'install' => | |
array ( | |
'date' => 'Thu, 30 Mar 2017 00:18:32 +0000', | |
), | |
'queue' => | |
array ( | |
'amqp' => | |
array ( | |
'host' => 'localhost', | |
'port' => '5672', | |
'user' => 'guest', | |
'password' => 'guest', | |
'virtualhost' => '/', | |
'ssl' => '', | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment