diff --git a/README.md b/README.md index e0b1900..fc10c3c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Examples You do this: - curl -fsSL https://get.telebit.cloud | bash + curl -fsSL https://get.telebit.io | bash You get this: @@ -70,19 +70,19 @@ Mac & Linux Open Terminal and run this install script: ``` -curl -fsSL https://get.telebit.cloud | bash +curl -fsSL https://get.telebit.io | bash ``` @@ -98,7 +98,7 @@ What does the installer do? * `~/.config/telebit/telebit.yml` * `~/.local/share/telebit` -Of course, feel free to inspect it before you run it: `curl -fsSL https://get.telebit.cloud` +Of course, feel free to inspect it before you run it: `curl -fsSL https://get.telebit.io` **You can customize the installation**: @@ -109,7 +109,7 @@ export TELEBIT_USERSPACE=no # install as a system service (launchd export TELEBIT_PATH=/opt/telebit export TELEBIT_USER=telebit export TELEBIT_GROUP=telebit -curl -fsSL https://get.telebit.cloud/ | bash +curl -fsSL https://get.telebit.io/ | bash ``` That will change the bundled version of node.js is bundled with Telebit Relay diff --git a/bin/telebit-remote.js b/bin/telebit-remote.js index 7e1c2b7..f0365da 100755 --- a/bin/telebit-remote.js +++ b/bin/telebit-remote.js @@ -47,8 +47,8 @@ function help() { //console.info('\ttelebit init # bootstrap the config files'); //console.info(''); console.info('\ttelebit status # whether enabled or disabled'); - console.info('\ttelebit enable # disallow incoming connections'); - console.info('\ttelebit disable # allow incoming connections'); + console.info('\ttelebit enable # allow incoming connections'); + console.info('\ttelebit disable # disallow incoming connections'); console.info(''); console.info('\ttelebit list # list rules for servernames and ports'); console.info(''); diff --git a/bin/telebit.js b/bin/telebit.js index 004a44a..7d3617b 100644 --- a/bin/telebit.js +++ b/bin/telebit.js @@ -3,7 +3,7 @@ 'use strict'; // node telebit daemon arg1 arg2 -if ('daemon' === process.argv[3]) { +if ('daemon' === process.argv[2]) { require('./telebitd.js'); } else { require('./telebit-remote.js');