summaryrefslogtreecommitdiff
path: root/crashbox-server/src/main/resources/reference.conf
blob: 3ac6de76f203dcbb1a80f34473502119d6641b71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
crashbox {

  host = "[::]"
  port = 9000

  blocking-dispatcher {
    type = Dispatcher
    executor = "thread-pool-executor"
    thread-pool-executor {
      fixed-pool-size = 16
    }
    throughput = 100
  }

  streams {
    directory = "streams"
  }

  db {
    url = "jdbc:h2:mem:test1"
    driver = org.h2.Driver
    connectionPool = disabled
    keepAliveConnection = true
  }
  
}

akka {
  #loglevel = "DEBUG"

  actor {
    guardian-supervisor-strategy = "akka.actor.StoppingSupervisorStrategy"
  }

}