Created
January 2, 2013 17:00
-
-
Save allardhoeve/4436106 to your computer and use it in GitHub Desktop.
Sample Hypernode Magento XML config
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
<?xml version="1.0"?> | |
<config> | |
<admin> | |
<routers> | |
<adminhtml> | |
<args> | |
<frontName>admin</frontName> | |
</args> | |
</adminhtml> | |
</routers> | |
</admin> | |
<global> | |
<cache> | |
<backend>memcached</backend> | |
<memcached> | |
<servers> | |
<server> | |
<host>localhost</host> | |
<persistent>1</persistent> | |
<port>11211</port> | |
</server> | |
</servers> | |
</memcached> | |
</cache> | |
<crypt> | |
<key>7e9b850804474ba39e96dd330fbb982c</key> | |
</crypt> | |
<disable_local_modules>false</disable_local_modules> | |
<install> | |
<date>Tue, 23 Nov 2010 09:08:10 +0000</date> | |
</install> | |
<resources> | |
<db> | |
<!-- Please enter your table prefix here if you have a table prefix //--> | |
<table_prefix></table_prefix> | |
</db> | |
<default_setup> | |
<connection> | |
<active>1</active> | |
<!-- Please make sure to edit these settings before accessing the application over the web //--> | |
<dbname>application</dbname> | |
<host>database.hostname.hypernode.com</host> | |
<password>yourpassword</password> | |
<username>yourusername</username> | |
</connection> | |
</default_setup> | |
</resources> | |
<session_save><![CDATA[memcache]]></session_save> | |
</global> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment