added config for the tunnel server to the schema

This commit is contained in:
tigerbot 2017-10-31 12:14:37 -06:00
parent 9ec642237c
commit 7423d6065f
1 changed files with 9 additions and 0 deletions

View File

@ -174,6 +174,14 @@ var mdnsSchema = {
}
};
var tunnelSvrSchema = {
type: 'object'
, properties: {
servernames: { type: 'array', items: { type: 'string' }}
, secret: { type: 'string' }
}
};
var ddnsSchema = {
type: 'object'
, properties: {
@ -223,6 +231,7 @@ var mainSchema = {
, ddns: ddnsSchema
, socks5: socks5Schema
, device: deviceSchema
, tunnel_server: tunnelSvrSchema
}
, additionalProperties: false
};