From 0f24cd0e2637401c5a1b0b3cacff1ab0a828fd7e Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Wed, 10 Aug 2022 22:27:15 +0100 Subject: [PATCH 1/3] Update _index.en.md --- content/self-host/install/_index.en.md | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/content/self-host/install/_index.en.md b/content/self-host/install/_index.en.md index a9d2eca..aa5e863 100644 --- a/content/self-host/install/_index.en.md +++ b/content/self-host/install/_index.en.md @@ -3,6 +3,38 @@ title: Installation weight: 10 --- +## Install your own server using a simple to run install script +Script is hosted on https://github.com/dinger1986/rustdeskinstall and supported on our Discord. + +Currently the script will download and setup the Relay and Signal Servers (hbbr and hbbs), generate configs and host them on a password protected web page for simple deploymnet to clients. + +### Requirements +You need to have linux distro installed, script is tested working with centos, ubuntu and debian. + +#### How to Install the server +Please setup your firewall on your server prior to running the script. + +Make sure you have got access via ssh or otherwise setup prior setting up the firewall, command for UFW is. +``` +ufw allow proto tcp from YOURIP to any port 22 +``` + +#### If you have UFW installed use the following commands: +``` +ufw allow 21115:21119/tcp +ufw allow 8000/tcp +ufw allow 21116/udp +sudo ufw enable +``` + +#### Run the following commands: +``` +wget https://raw.githubusercontent.com/dinger1986/rustdeskinstall/master/install.sh +chmod +x install.sh +./install.sh +``` + + ## Install your own server with docker(-compose) ### Requirements From 1f656a4a04e14dec17201e7d593c99f6c45f9638 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Wed, 10 Aug 2022 22:29:42 +0100 Subject: [PATCH 2/3] Update _index.en.md --- content/self-host/install/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/install/_index.en.md b/content/self-host/install/_index.en.md index aa5e863..54f8406 100644 --- a/content/self-host/install/_index.en.md +++ b/content/self-host/install/_index.en.md @@ -9,7 +9,7 @@ Script is hosted on https://github.com/dinger1986/rustdeskinstall and supported Currently the script will download and setup the Relay and Signal Servers (hbbr and hbbs), generate configs and host them on a password protected web page for simple deploymnet to clients. ### Requirements -You need to have linux distro installed, script is tested working with centos, ubuntu and debian. +You need to have linux installed, script is tested working with centos, ubuntu and debian. A server with 1 cpu, 1GB and 10Gb disk is plenty to run RustDesk. #### How to Install the server Please setup your firewall on your server prior to running the script. From e6c287b8780598502e4a5c86662d9810af74536a Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Wed, 10 Aug 2022 22:30:51 +0100 Subject: [PATCH 3/3] Update _index.en.md --- content/self-host/install/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/install/_index.en.md b/content/self-host/install/_index.en.md index 54f8406..95358e0 100644 --- a/content/self-host/install/_index.en.md +++ b/content/self-host/install/_index.en.md @@ -14,7 +14,7 @@ You need to have linux installed, script is tested working with centos, ubuntu a #### How to Install the server Please setup your firewall on your server prior to running the script. -Make sure you have got access via ssh or otherwise setup prior setting up the firewall, command for UFW is. +Make sure you have got access via ssh or otherwise setup prior setting up the firewall, the example commands for UFW(debian based) are. ``` ufw allow proto tcp from YOURIP to any port 22 ```