Created
April 21, 2021 14:38
-
-
Save r1tt3r/e75854a9f89c6ddbb1d683165796ad4a to your computer and use it in GitHub Desktop.
This file contains 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 [ | |
'backend' => [ | |
'frontName' => 'admin' | |
], | |
'remote_storage' => [ | |
'driver' => 'file' | |
], | |
'queue' => [ | |
'consumers_wait_for_messages' => 1 | |
], | |
'crypt' => [ | |
'key' => 'fc42b145a7880361795349a6003033c6' | |
], | |
'db' => [ | |
'table_prefix' => '', | |
'connection' => [ | |
'default' => [ | |
'host' => '127.0.0.1', | |
'dbname' => 'innovatis', | |
'username' => 'USER', | |
'password' => 'PASSWORD', | |
'model' => 'mysql4', | |
'engine' => 'innodb', | |
'initStatements' => 'SET NAMES utf8;', | |
'active' => '1', | |
'driver_options' => [ | |
1014 => false | |
] | |
] | |
] | |
], | |
'resource' => [ | |
'default_setup' => [ | |
'connection' => 'default' | |
] | |
], | |
'x-frame-options' => 'SAMEORIGIN', | |
'MAGE_MODE' => 'developer', | |
'session' => [ | |
'save' => 'files' | |
], | |
'cache' => [ | |
'frontend' => [ | |
'default' => [ | |
'id_prefix' => '5a6_' | |
], | |
'page_cache' => [ | |
'id_prefix' => '5a6_' | |
] | |
], | |
'allow_parallel_generation' => false | |
], | |
'lock' => [ | |
'provider' => 'db', | |
'config' => [ | |
'prefix' => null | |
] | |
], | |
'directories' => [ | |
'document_root_is_pub' => true | |
], | |
'cache_types' => [ | |
'config' => 1, | |
'layout' => 1, | |
'block_html' => 1, | |
'collections' => 1, | |
'reflection' => 1, | |
'db_ddl' => 1, | |
'compiled_config' => 1, | |
'eav' => 1, | |
'customer_notification' => 1, | |
'config_integration' => 1, | |
'config_integration_api' => 1, | |
'full_page' => 1, | |
'config_webservice' => 1, | |
'translate' => 1, | |
'vertex' => 1 | |
], | |
'downloadable_domains' => [ | |
], | |
'install' => [ | |
'date' => 'Wed, 21 Apr 2021 12:36:39 +0000' | |
], | |
'system' => [ | |
'default' => [ | |
'web' => [ | |
'secure' => [ | |
'offloader_header' => 'X-Forwarded-Proto', | |
'use_in_frontend' => '1', | |
'use_in_adminhtml' => '1', | |
'base_url' => 'http://innovatis.test/' | |
], | |
'seo' => [ | |
'use_rewrites' => '1' | |
], | |
'unsecure' => [ | |
'base_url' => 'http://innovatis.test/' | |
] | |
], | |
'system' => [ | |
'full_page_cache' => [ | |
'caching_application' => '2', | |
'ttl' => '604800' | |
] | |
], | |
'catalog' => [ | |
'search' => [ | |
'enable_eav_indexer' => '1' | |
] | |
], | |
'dev' => [ | |
'static' => [ | |
'sign' => '0' | |
] | |
] | |
] | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment