Skip to content

Instantly share code, notes, and snippets.

@allardhoeve
Created January 2, 2013 17:00
Show Gist options
  • Save allardhoeve/4436106 to your computer and use it in GitHub Desktop.
Save allardhoeve/4436106 to your computer and use it in GitHub Desktop.
Sample Hypernode Magento XML config
<?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