#################### # Akka Config File # #################### # This file has all the default settings, so all these could be removed with no visible effect. # Modify as needed. filename = "./logs/akka.log" roll = "daily" # Options: never, hourly, daily, sunday/monday/... level = "debug" # Options: fatal, critical, error, warning, info, debug, trace console = on # syslog_host = "" # syslog_server_name = "" version = "0.6" # FQN to the class doing initial active object/actor # supervisor bootstrap, should be defined in default constructor boot = ["sample.java.Boot", "sample.scala.Boot", "se.scalablesolutions.akka.security.samples.Boot"] timeout = 5000 # default timeout for future based invocations serialize-messages = off # does a deep clone of (non-primitive) messages to ensure immutability service = on distributed = off # not implemented yet compression-scheme = "zlib" # Options: "zlib" (lzf to come), leave out for no compression zlib-compression-level = 6 # Options: 0-9 (1 being fastest and 9 being the most compressed), default is 6 service = on hostname = "localhost" port = 9999 connection-timeout = 1000 # in millis (1 sec default) reconnect-delay = 5000 # in millis (5 sec default) read-timeout = 10000 # in millis (10 sec default) service = on hostname = "localhost" port = 9998 filters = "[se.scalablesolutions.akka.security.AkkaSecurityFilterFactory]" # List with all servlet filters to use authenticator = "se.scalablesolutions.akka.security.samples.BasicAuthenticationService" # The authentication service to use hostname = "127.0.0.1" # IP address or hostname of one of the Cassandra cluster's seeds port = 9160 storage-format = "scala-json" # Options: java, scala-json, java-json, protobuf consistency-level = "QUORUM" # Options: ZERO, ONE, QUORUM, ALL hostname = "127.0.0.1" # IP address or hostname of the MongoDB DB instance port = 27017 dbname = "mydb"