From 5b4dbbd77a6b2383d1304cac0d30bab656f91991 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 30 Jun 2018 20:15:52 -0600 Subject: [PATCH] show https:// prefix --- bin/telebit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/telebit.js b/bin/telebit.js index 9696c43..9d6a047 100755 --- a/bin/telebit.js +++ b/bin/telebit.js @@ -439,9 +439,9 @@ var utils = { if ('http' === body.module) { // TODO we'll support slingshot-ing in the future if (String(body.local) === String(parseInt(body.local, 10))) { - console.log('> Forwarding ' + body.remote + ' => localhost:' + body.local); + console.log('> Forwarding https://' + body.remote + ' => localhost:' + body.local); } else { - console.log('> Serving ' + body.local + ' as ' + body.remote); + console.log('> Serving ' + body.local + ' as https://' + body.remote); } } else if ('tcp' === body.module) { console.log('> Forwarding ' + state.config.relay + ':' + body.remote + ' => localhost:' + body.local);