From c8c06d1b9989dd201234f2db76b4f2b83324edb3 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 15 Jun 2018 06:13:26 +0000 Subject: [PATCH] use sharedDomain from config --- lib/relay.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/relay.js b/lib/relay.js index f31fd7c..3760e5f 100644 --- a/lib/relay.js +++ b/lib/relay.js @@ -264,7 +264,7 @@ module.exports.create = function (state) { //token.dynamicPorts.push(serviceport); Devices.add(state.deviceLists, serviceport, token); //var hri = require('human-readable-ids').hri; - //var hrname = hri.random() + '.telebit.cloud'; + //var hrname = hri.random() + '.' + state.config.sharedDomain; //token.dynamicNames.push(hrname); // TODO restrict to authenticated device // TODO pull servername from config @@ -275,8 +275,8 @@ module.exports.create = function (state) { , [ 2 , 'grant' , [ ['ssh+https', token.domains[0], 443 ] - , ['ssh', 'ssh.telebit.cloud', serviceport ] - , ['tcp', 'tcp.telebit.cloud', serviceport] + , ['ssh', 'ssh.' + state.config.sharedDomain, serviceport ] + , ['tcp', 'tcp.' + state.config.sharedDomain, serviceport] , ['https', token.domains[0] ] ] ]