标签:.net 定义 efi ogg rip post 完整 ber sign
经许可的转载需注明作者和博客主页:http://blog.csdn.net/chszs
虽然NATS能够无配置的执行,但也能够使用配置文件配置NATSserver。
NATSserver配置文件的格式比較灵活,结合了传统的JSON格式和新的YAML格式的风格。
NATS配置文件格式支持以下语法:
Key value assigments using:
Equals sign (foo = 2)
Colon (foo: 2)
Whitespace (foo 2)
Maps can be assigned with no key separator
注:YAML不是标记语言,而是一种语言中立的、对阅读友好的数据序列化标准。YAML语言发展了三个版本号。1.0、1.1、1.2。
以下是一个完整的NATSserver配置文件样例:
port: 4242 # 供client连接的监听端口
net: apcera.me # 监听的网络地址
http_port: 8222 # HTTP监控端口
# client连接的认证信息
authorization {
user: derek
password: T0pS3cr3t
timeout: 1
}
# 集群定义
cluster {
host: ‘127.0.0.1‘ # 主机地址
port: 4244 # 路由连接的入站(inbound)端口
# 路由连接的认证信息
authorization {
user: route_user
password: T0pS3cr3tT00!
timeout: 0.5
}
# Routes are actively solicited and connected to from this server.
# Other servers can connect to us if they supply the correct credentials
# in their routes definitions from above.
routes = [
nats-route://user1:pass1@127.0.0.1:4245
nats-route://user2:pass2@127.0.0.1:4246
]
}
# 日志选项
debug: false
trace: true
logtime: false
log_file: "/tmp/gnatsd.log"
# PID进程文件
pid_file: "/tmp/gnatsd.pid"
# 一些系统属性
# client最大连接数
max_connections: 100
# 最大协议控制行
max_control_line: 512
# 最大的有效负载
max_payload: 65536
# 慢消费者阀值
max_pending_size: 10000000
标签:.net 定义 efi ogg rip post 完整 ber sign
原文地址:http://www.cnblogs.com/brucemengbm/p/7224478.html