29 lines
566 B
Plaintext
29 lines
566 B
Plaintext
akka {
|
|
|
|
actor.provider = "akka.cluster.ClusterActorRefProvider"
|
|
|
|
remote {
|
|
netty {
|
|
tcp {
|
|
hostname = 127.0.0.1
|
|
port = 2551
|
|
}
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
seed-nodes = [
|
|
"akka.tcp://ClusterSystem@127.0.0.1:2551",
|
|
"akka.tcp://ClusterSystem@127.0.0.1:2552"]
|
|
|
|
# auto-down-unreachable-after = 10s
|
|
}
|
|
|
|
extensions = ["akka.cluster.client.ClusterClientReceptionist"]
|
|
|
|
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
|
loglevel = "DEBUG"
|
|
logging-filter = "akka.event.slf4j.Slf4jLoggingFilter"
|
|
}
|
|
redis.host = "172.20.24.171"
|