2023.03.13 增加dev环境的配置文件。

This commit is contained in:
2023-03-13 10:33:28 +08:00
parent 8546ef02f0
commit d2d44b3803
23 changed files with 660 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
akka {
actor.provider = "akka.cluster.ClusterActorRefProvider"
remote {
netty {
tcp {
hostname = 172.20.24.171
port = 2551
}
}
}
cluster {
seed-nodes = [
"akka.tcp://ClusterSystem@172.20.24.171:2551",
"akka.tcp://ClusterSystem@172.20.24.171: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"