服务端配置
服务端 toml 配置
# 客户端与服务连接端口
bindPort = 7031
# 客户端连接服务端时认证的密码
auth.token = "token" #自行修改为自己的token
# http协议监听端口
#vhostHTTPPort = 7280
vhostHTTPPort = 80
#vhostHTTPSPort = 7281
vhostHTTPSPort = 443
# web界面配置
webServer.addr = "0.0.0.0"
webServer.port = 7531
webServer.user = "user" #自行修改为自己的账号
webServer.password = "pwd" #自行修改为自己的密码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14