29 lines
578 B
Plaintext
29 lines
578 B
Plaintext
akka {
|
|
|
|
actor.provider = "akka.cluster.ClusterActorRefProvider"
|
|
|
|
remote {
|
|
netty {
|
|
tcp {
|
|
hostname = 192.168.2.164
|
|
port = 2552
|
|
}
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
seed-nodes = [
|
|
"akka.tcp://ClusterSystem@192.168.2.164:2551",
|
|
"akka.tcp://ClusterSystem@192.168.2.164: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 = "192.168.2.239"
|