User Tools
Writing /app/www/public/data/meta/development/applications/footprints/configuration.meta failed
development:applications:footprints:configuration
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| development:applications:footprints:configuration [2018/03/08 20:19] – adowling | development:applications:footprints:configuration [2021/06/25 10:09] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Configuration File ====== | ||
| + | --- // | ||
| + | |||
| + | The Configuration file for this project is called **FootprintsConfig.groovy** and is located in / | ||
| + | |||
| + | < | ||
| + | grails.plugin.springsecurity.securityConfigType = ' | ||
| + | grails.plugin.springsecurity.interceptUrlMap = [ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | ] | ||
| + | |||
| + | grails.plugin.springsecurity.logout.postOnly = false | ||
| + | |||
| + | log4j = { | ||
| + | root { | ||
| + | debug ' | ||
| + | } | ||
| + | info ' | ||
| + | } | ||
| + | |||
| + | rabbitmq { | ||
| + | credentials { | ||
| + | username = ' | ||
| + | password = '# | ||
| + | host = ' | ||
| + | virtualHost = ' | ||
| + | handshakeTimeout = ' | ||
| + | } | ||
| + | queues { | ||
| + | footprintsQueue = ' | ||
| + | ticketerInboundQueue = ' | ||
| + | |||
| + | footprintsOutboundQueue = ' | ||
| + | } | ||
| + | exchanges { | ||
| + | ticketerAuditEventExchange=' | ||
| + | |||
| + | footprintsExchange = ' | ||
| + | } | ||
| + | tags { | ||
| + | footprintsTag = ' | ||
| + | |||
| + | ticketAuditEventTag = ' | ||
| + | } | ||
| + | bindings { | ||
| + | //In the Form " | ||
| + | //Incoming Message | ||
| + | auditEventBinding1=" | ||
| + | } | ||
| + | consumer { | ||
| + | name = ' | ||
| + | } | ||
| + | numberOfTriesBeforeFail = 1 | ||
| + | numberOfSecondsBetweenTries = 1 | ||
| + | numberOfSecondsToWaitForRabbitReconnect = 5 | ||
| + | } | ||
| + | |||
| + | threadmanager { | ||
| + | numberOfInboundThreads = 2 | ||
| + | numberOfOutboundThreads = 2 | ||
| + | nameOfInboundMessageThreads = ' | ||
| + | numberOfSecondsToWaitBeforeTimeoutForInbound = 20 | ||
| + | nameOfOutboundMessageThreads = ' | ||
| + | } | ||
| + | |||
| + | hibernate { | ||
| + | cache.use_second_level_cache=false | ||
| + | cache.use_query_cache=false | ||
| + | cache.provider_class=' | ||
| + | } | ||
| + | |||
| + | dataSource.pooled = true | ||
| + | dataSource.dbCreate = " | ||
| + | dataSource.driverClassName = " | ||
| + | dataSource.dialect = " | ||
| + | dataSource.url = " | ||
| + | dataSource.username = " | ||
| + | dataSource.password = " | ||
| + | </ | ||