Skip to content

Instantly share code, notes, and snippets.

@rafaelstz
Created October 17, 2019 17:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rafaelstz/0d15bf5e4137378f758d21acd099ed69 to your computer and use it in GitHub Desktop.
Save rafaelstz/0d15bf5e4137378f758d21acd099ed69 to your computer and use it in GitHub Desktop.
<?php
return [
'backend' => [
'frontName' => 'admin'
],
'install' => [
'date' => 'Mon, 14 Oct 2019 13:55:23 +0000'
],
'crypt' => [
'key' => 'xKNznqXjauz63rJpxd7vaPiTN9wEhnRM'
],
'session' => [
'save' => 'files'
],
'db' => [
'table_prefix' => '',
'connection' => [
'default' => [
'host' => 'localhost',
'dbname' => 'CHANGEIT',
'username' => 'CHANGEIT',
'password' => 'CHANGEIT',
'model' => 'mysql4',
'engine' => 'innodb',
'initStatements' => 'SET NAMES utf8;',
'active' => '1'
]
]
],
'resource' => [
'default_setup' => [
'connection' => 'default'
]
],
'x-frame-options' => 'SAMEORIGIN',
'MAGE_MODE' => 'developer',
'cache_types' => [
'config' => 1,
'layout' => 1,
'block_html' => 1,
'collections' => 1,
'reflection' => 1,
'db_ddl' => 1,
'eav' => 1,
'config_integration' => 1,
'config_integration_api' => 1,
'full_page' => 1,
'translate' => 1,
'config_webservice' => 1,
'compiled_config' => 1,
'customer_notification' => 1,
'vertex' => 1
],
'cache' => [
'frontend' => [
'default' => [
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '127.0.0.1',
'port' => '6379',
'persistent' => '',
'database' => '0',
'force_standalone' => '0',
'connect_retries' => '1',
'read_timeout' => '10',
'automatic_cleaning_factor' => '0',
'compress_data' => '1',
'compress_tags' => '1',
'compress_threshold' => '20480',
'compression_lib' => 'gzip'
]
],
'page_cache' => [
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '127.0.0.1',
'port' => '6379',
'persistent' => '',
'database' => '1',
'force_standalone' => '0',
'connect_retries' => '1',
'read_timeout' => '10',
'automatic_cleaning_factor' => '0',
'compress_data' => '0',
'compress_tags' => '1',
'compress_threshold' => '20480',
'compression_lib' => 'gzip'
]
]
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment