mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-06-25 04:02:04 +02:00
Update _index.en.md
This commit is contained in:
parent
b44247b42f
commit
7f9acdd43d
@ -12,8 +12,8 @@ Kindly written up by [@I-Am-Skoot](https://github.com/I-Am-Skoot/RustDeskNPMDock
|
|||||||
- Firewall Tool
|
- Firewall Tool
|
||||||
|
|
||||||
#### Assumptions
|
#### Assumptions
|
||||||
This example is an All in One for hosting just RustDesk services only. This can be expanded to a more flexible solution by splitting the NPM into it's own Docker Compose.
|
This example is an All in One for hosting just RustDesk services only. This can be expanded to a more flexible solution by splitting the NPM into it's own Docker Compose.
|
||||||
- DMZ network 192.168.1.0/24
|
- DMZ Network: 192.168.1.0/24
|
||||||
- NPM (External): 192.168.1.250
|
- NPM (External): 192.168.1.250
|
||||||
- LAN Network: 10.0.0.0/24
|
- LAN Network: 10.0.0.0/24
|
||||||
- RSBackend Network: 192.168.254.0/29
|
- RSBackend Network: 192.168.254.0/29
|
||||||
@ -21,7 +21,7 @@ This example is an All in One for hosting just RustDesk services only. This can
|
|||||||
- HBBS: 192.168.254.2
|
- HBBS: 192.168.254.2
|
||||||
- HBBR: 192.168.254.3
|
- HBBR: 192.168.254.3
|
||||||
- Docker Host: Linux
|
- Docker Host: Linux
|
||||||
- Each application has a dedicated folder in /opt/
|
- Each application has a dedicated folder in `/opt/`.
|
||||||
- Hostname: uniquehostname (Change This)
|
- Hostname: uniquehostname (Change This)
|
||||||
- DNS Name: rustdesk.example.com
|
- DNS Name: rustdesk.example.com
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ Make modifications to the examples as needed.
|
|||||||
### Prepare Docker
|
### Prepare Docker
|
||||||
You must have Docker already installed this guide does not go into the specifics of that.
|
You must have Docker already installed this guide does not go into the specifics of that.
|
||||||
|
|
||||||
You will need to create a network for the RustServer Backend and the DMZ.
|
You will need to create a network for the RustDesk Server Backend and the DMZ.
|
||||||
For each application you use with the NPM (Nginx Proxy Manager) you should have a dedicated backend network to isolate it.
|
For each application you use with the NPM (Nginx Proxy Manager) you should have a dedicated backend network to isolate it.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -47,18 +47,19 @@ For each application you use with the NPM (Nginx Proxy Manager) you should have
|
|||||||
|
|
||||||
### Setup Firewall
|
### Setup Firewall
|
||||||
Configure the following Port forwarding/NAT ports from your public IP to the NPM Server.
|
Configure the following Port forwarding/NAT ports from your public IP to the NPM Server.
|
||||||
- 21114 => 8080 TCP
|
- 21114 => 8080 TCP
|
||||||
- 21115 => 21115 TCP
|
- 21115 => 21115 TCP
|
||||||
- 21116 => 21116 TCP/UDP
|
- 21116 => 21116 TCP/UDP
|
||||||
- 21117 => 21117 TCP
|
- 21117 => 21117 TCP
|
||||||
- 21118 => 21118 TCP
|
- 21118 => 21118 TCP
|
||||||
- 21119 => 21119 TCP
|
- 21119 => 21119 TCP
|
||||||
- 443 => 443 TCP # If you want to use SSL
|
- 443 => 443 TCP # If you want to use SSL
|
||||||
|
|
||||||
### Setup Docker Compose
|
### Setup Docker Compose
|
||||||
This will start a container with NPM and the correct networks.
|
This will start a container with NPM and the correct networks.
|
||||||
|
|
||||||
Docker-Compose.yaml
|
Copy the below into docker-compose.yaml.
|
||||||
|
|
||||||
```
|
```
|
||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
@ -78,7 +79,7 @@ services:
|
|||||||
container_name: rustdesk_hbbs
|
container_name: rustdesk_hbbs
|
||||||
image: rustdesk/rustdesk-server-pro:latest
|
image: rustdesk/rustdesk-server-pro:latest
|
||||||
command: hbbs -k _
|
command: hbbs -k _
|
||||||
hostname: uniquehostname #Change This
|
hostname: uniquehostname # Change This
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/rustdeskserver:/root
|
- /opt/rustdeskserver:/root
|
||||||
networks:
|
networks:
|
||||||
@ -88,7 +89,6 @@ services:
|
|||||||
- hbbr
|
- hbbr
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
hbbr:
|
hbbr:
|
||||||
container_name: rustdesk_hbbr
|
container_name: rustdesk_hbbr
|
||||||
image: rustdesk/rustdesk-server-pro:latest
|
image: rustdesk/rustdesk-server-pro:latest
|
||||||
@ -117,12 +117,12 @@ Configure Stream Hosts for the following Ports:
|
|||||||
- 80 => 127.0.0.1:8080 TCP # catches local traffic
|
- 80 => 127.0.0.1:8080 TCP # catches local traffic
|
||||||
|
|
||||||
Configure Proxy Host:
|
Configure Proxy Host:
|
||||||
- Domain Name: rustdesk.example.com
|
- Domain Name: rustdesk.example.com
|
||||||
- Scheme: http
|
- Scheme: http
|
||||||
- Forward Hostname / IP: 192.168.254.2
|
- Forward Hostname / IP: 192.168.254.2
|
||||||
- Forward Port: 21114
|
- Forward Port: 21114
|
||||||
- Block Common Exploits: Checked
|
- Block Common Exploits: Checked
|
||||||
- Optional: Configure SSL **DO NOT REQUIRE - Client needs to be able to communicate without SSL.**
|
- Optional: Configure SSL **(DO NOT REQUIRE - Client needs to be able to communicate without SSL.)**
|
||||||
|
|
||||||
### Setup RustDesk Server
|
### Setup RustDesk Server
|
||||||
Connect to Server interface http://rustdesk.example.com or https://rustdesk.example.com if you have configured SSL for web interface.
|
Connect to Server interface http://rustdesk.example.com or https://rustdesk.example.com if you have configured SSL for web interface.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user