;-----------------------LOGGING------------------------- ;EMERG = 0; // Emergency: system is unusable ;ALERT = 1; // Alert: action must be taken immediately ;CRIT = 2; // Critical: critical conditions ;ERR = 3; // Error: error conditions ;WARN = 4; // Warning: warning conditions ;NOTICE = 5; // Notice: normal but significant condition ;INFO = 6; // Informational: informational messages ;DEBUG = 7; // Debug: debug messages [production] accounting.logging.enabled = true ;enable/disable logging accounting.logging.logPriorityLowerEqualTo = 6 ;only log records with priority greater than value accounting.php.display_errors.enabled = true accounting.php.error_reporting.type = E_ALL accounting.php.memory_limit = 8096M accounting.run.is_run = false accounting.run.month = 3 accounting.run.year = 2013 accounting.notifications.recipient.email.name = "Accounting Run Watchers" accounting.notifications.recipient.email.address = "{{ ACCOUNTING_NOTIFICATIONS_RECIPIENT_EMAIL }}" accounting.notifications.recipient.techemail.name = "Tech Accounting Run Watchers" accounting.notifications.recipient.techemail.address = "{{ ACCOUNTING_NOTIFICATIONS_RECIPIENT_TECH_EMAIL }}" accounting.redfinancialfeed.tored["robert_kordisch@redmusic.com"] = "Robert Kordisch" accounting.redfinancialfeed.tored["neil_lichtenstein@redmusic.com"] = "Neil Lichtenstein" accounting.redfinancialfeed.tored["seung-hee_lee@redmusic.com"] = "Seung Hee Lee" accounting.redfinancialfeed.toorchard["accounting-run-watchers@theorchard.com"] = "Accounting Watchers" accounting.redfinancialfeed.tomail["doit@redmusic.com"] = "Do It" ;Queue configs queue.queueAdapter = ApolloStomp queue.host = 192.168.30.178 queue.virtualhost = "kalimdor" queue.port = 61616 queue.username = "admin" queue.password = "admin" ;Cache settings for the script cache.memcached.host = {{ MEMCACHE_HOST }}; cache.memcached.port = {{ MEMCACHE_PORT }}; ;SNS topic arns sns.topicarn.script.info = "{{ ORCHARD_ASNS_TOPICARN_INFO }}" sns.topicarn.script.loadaccounting = {{ SNS_TOPICARN_SCRIPT_LOADACCOUNTING }} ; Read only DB accounting.read_only.adapter = "mysql" accounting.read_only.host = {{ MYSQL_HOST_DB_SLAVE }} accounting.read_only.port = 3306 accounting.read_only.username = {{ MYSQL_USER_DB_SLAVE }} accounting.read_only.password = {{ MYSQL_PASSWORD_DB_SLAVE }} accounting.read_only.dbname = "art_relations" accounting.read_only.charset = "utf8mb4" ; RabbitMQ - Transaction Queue rabbitmq.host = "localhost" rabbitmq.port = 5672 rabbitmq.user = "guest" rabbitmq.pass = "guest" rabbitmq.vhost = "/" rabbitmq.exchange.name = "txn_queue" rabbitmq.exchange.type = "direct" rabbitmq.exchange.passive = false rabbitmq.exchange.durable = true rabbitmq.exchange.auto_delete = false accounting.mutex_path = "/tmp" [development : production] [testing : development]