| 1 | <?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | <snippet filetemplate="true" extension="xml.cfm"> |
|---|
| 3 | <name>New Config XML</name> |
|---|
| 4 | <help>A new config.xml</help> |
|---|
| 5 | <starttext><![CDATA[<?xml version="1.0" encoding="ISO-8859-1"?> |
|---|
| 6 | <Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 7 | xsi:noNamespaceSchemaLocation="http://www.coldboxframework.com/schema/config_2.0.2.xsd"> |
|---|
| 8 | <Settings> |
|---|
| 9 | <Setting name="AppName" value="$${Application name}"/> |
|---|
| 10 | <Setting name="DebugMode" value="$${Debug Mode:true|false}" /> |
|---|
| 11 | <Setting name="DebugPassword" value="$${Debug Password}"/> |
|---|
| 12 | <Setting name="EventName" value="$${Event Name:event|do}"/> |
|---|
| 13 | <Setting name="ReinitPassword" value="$${Framework Reinit Password (Blank if not used)}"/> |
|---|
| 14 | <Setting name="EnableDumpVar" value="$${Enable DumpVar:true|false}" /> |
|---|
| 15 | <Setting name="EnableColdfusionLogging" value="$${Enable Coldfusion Logging:true|false}" /> |
|---|
| 16 | <Setting name="EnableColdboxLogging" value="$${Enable Coldbox Logging:true|false}" /> |
|---|
| 17 | <Setting name="ColdboxLogsLocation" value="$${Coldbox Logs Location (Blank if not used):logs}" /> |
|---|
| 18 | <Setting name="DefaultEvent" value="$${Default Event Handler}"/> |
|---|
| 19 | <Setting name="RequestStartHandler" value="$${Request Start Handler (Blank if not used)}"/> |
|---|
| 20 | <Setting name="RequestEndHandler" value="$${Request End Handler (Blank if not used)}"/> |
|---|
| 21 | <Setting name="ApplicationStartHandler" value="$${Application Start Handler (Blank if not used)}" /> |
|---|
| 22 | <Setting name="OwnerEmail" value="$${Owner Email (Outgoing Account)}" /> |
|---|
| 23 | <Setting name="EnableBugReports" value="$${Enable Bug Reports:true|false}"/> |
|---|
| 24 | <Setting name="UDFLibraryFile" value="$${UDF Library File (Blank if not used)}" /> |
|---|
| 25 | <Setting name="CustomErrorTemplate" value="$${Custom Error Template (Blank if not used)}"/> |
|---|
| 26 | <Setting name="ExceptionHandler" value="$${Exception Handler (Blank if not used)}"/> |
|---|
| 27 | <Setting name="onInvalidEvent" value="$${On Invalid Event (Blank if not used)}"/> |
|---|
| 28 | <Setting name="MessageboxStyleClass" value="$${Messagebox Style Class (Blank if not used)}"/> |
|---|
| 29 | <Setting name="HandlersIndexAutoReload" value="$${Handlers Index Auto Reload:true|false}"/> |
|---|
| 30 | <Setting name="ConfigAutoReload" value="$${Config Auto Reload:true|false}"/> |
|---|
| 31 | <Setting name="HandlerCaching" value="$${Handler Caching:true|false}"/> |
|---|
| 32 | <Setting name="MyPluginsLocation" value="$${Custom Plugins Invocation Path}" /> |
|---|
| 33 | <Setting name="IOCFramework" value="$${IOC Framework (Blank If not Used):|coldspring|lightwire}" /> |
|---|
| 34 | <Setting name="IOCDefinitionFile" value="$${IOC Service Definition File (Relative or Absolute if used)}" /> |
|---|
| 35 | <Setting name="IOCObjectCaching" value="$${IOC Object Caching:true|false}"/> |
|---|
| 36 | </Settings> |
|---|
| 37 | |
|---|
| 38 | <YourSettings> |
|---|
| 39 | |
|---|
| 40 | </YourSettings> |
|---|
| 41 | |
|---|
| 42 | <!--Optional,if blank it will use the CFMX administrator settings.--> |
|---|
| 43 | <MailServerSettings> |
|---|
| 44 | |
|---|
| 45 | </MailServerSettings> |
|---|
| 46 | |
|---|
| 47 | <BugTracerReports> |
|---|
| 48 | |
|---|
| 49 | </BugTracerReports> |
|---|
| 50 | |
|---|
| 51 | <DevEnvironments> |
|---|
| 52 | |
|---|
| 53 | </DevEnvironments> |
|---|
| 54 | |
|---|
| 55 | <WebServices> |
|---|
| 56 | |
|---|
| 57 | </WebServices> |
|---|
| 58 | |
|---|
| 59 | <Layouts> |
|---|
| 60 | <DefaultLayout>Layout.Main.cfm</DefaultLayout> |
|---|
| 61 | </Layouts> |
|---|
| 62 | |
|---|
| 63 | <i18N> |
|---|
| 64 | |
|---|
| 65 | </i18N> |
|---|
| 66 | |
|---|
| 67 | <Datasources> |
|---|
| 68 | |
|---|
| 69 | </Datasources> |
|---|
| 70 | |
|---|
| 71 | <!-- |
|---|
| 72 | <Cache> |
|---|
| 73 | <ObjectDefaultTimeout>20</ObjectDefaultTimeout> |
|---|
| 74 | <ObjectDefaultLastAccessTimeout>5</ObjectDefaultLastAccessTimeout> |
|---|
| 75 | <ReapFrequency>1</ReapFrequency> |
|---|
| 76 | <MaxObjects>0</MaxObjects> |
|---|
| 77 | <FreeMemoryPercentageThreshold>0</FreeMemoryPercentageThreshold> |
|---|
| 78 | </Cache> |
|---|
| 79 | --> |
|---|
| 80 | |
|---|
| 81 | </Config> |
|---|
| 82 | ]]></starttext> |
|---|
| 83 | <endtext><![CDATA[]]></endtext> |
|---|
| 84 | </snippet> |
|---|