<?xml version="1.0"?>
<config xmlns:zf="http://framework.zend.com/xml/zend-config-xml/1.0/">
	<production>
		<webhost>zf.dev</webhost>
		<includePaths>
			<library><zf:const zf:name="APPLICATION_PATH"/>/../library</library>
		</includePaths>
		<bootstrap>
			<path><zf:const zf:name="APPLICATION_PATH"/>/bootstrap.php</path>
			<class>Bootstrap</class>
		</bootstrap>
		<autoloaderNamespaces>
			<Plugins>Plugins_</Plugins>
		</autoloaderNamespaces>
		<base_prefix>http://</base_prefix>
		<debugging>0</debugging>		
		<phpSettings>
			<display_startup_errors>0</display_startup_errors>
			<display_errors>0</display_errors>
			<date>
				<timezone>Europe/Amsterdam</timezone>
			</date>
		</phpSettings>
		<resources>
		<modules></modules>
			<frontController>
				<moduleDirectory><zf:const zf:name="APPLICATION_PATH"/>/modules</moduleDirectory>
				<moduleControllerDirectoryName>controllers</moduleControllerDirectoryName>
			</frontController>
			<layout>
				<layoutpath><zf:const zf:name="APPLICATION_PATH"/>/layouts</layoutpath>
				<contentkey>content</contentkey>
				<layout>main</layout>
			</layout>			
			<session>
				<name>Naam</name>
			</session>
		</resources>
		<etc>
		<cache>
			<defaultlifetime>3600</defaultlifetime>
			<defaultcachedir><zf:const zf:name="APPLICATION_PATH"/>/../data/cache/</defaultcachedir>
			<plugin>1</plugin>
		</cache>
		</etc>
	</production>

	<staging zf:extends="production">
		<debugging>true</debugging>
		<resources>
			<db>				
				<params>
					<profiler>
						<enabled>true</enabled>
					</profiler>
				</params>
			</db>
		</resources>
	</staging>
	<debugging zf:extends="staging">
		<phpSettings>
			<display_startup_errors>1</display_startup_errors>
			<display_errors>1</display_errors>
		</phpSettings>
	</debugging>
	<development zf:extends="debugging">
		<phpSettings>
			<error_reporting><zf:const zf:name="E_ALL"/></error_reporting>
		</phpSettings>
	</development>
</config>