-
-
Save hadim/2225f0869ada523dec8148510ca438ca to your computer and use it in GitHub Desktop.
# A minimal configuration to host a RustDesk server with Traefik v3. | |
# | |
# This configuration is based on a single Rustdesk container hosting the two hbbr and hbbs services | |
# instead of running two separate containers as in the official documentation. | |
# See https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/ for more information. | |
# | |
# Pay attention to the comments in the file and adapt the configuration to your needs. | |
# Once deployed you must configure the Rustdesk client in the Network tab to use the domain | |
# name of the relay server and the port 21117. | |
# ID server: DOMAIN_NAME:21116 | |
# Relay server: DOMAIN_NAME:21117 | |
# Key: THE_PUBLIC_KEY | |
# | |
# Note that 21116/udp is causing connections issue with Rustdesk so we | |
# directly open the port in the rustdesk container instead of going through Traefik. | |
version: "3" | |
services: | |
# Traefik proxy | |
# | |
# This traefik configuration is the strict minimum to make Rustdesk work without any other services | |
# such as Traefik dashboard. Adapt it to your needs. | |
traefik: | |
container_name: traefik | |
image: traefik:v3.2 | |
ports: | |
# Rustdesk ports | |
# Those MUST be open on your router and firewall and forwarded to the host running | |
# this docker-compose file. | |
- 21115:21115/tcp # ID Server - NAT type test | |
- 21116:21116/tcp # ID Server - TCP hole punching | |
- 21117:21117/tcp # Relay Server - Relay services | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock:ro | |
restart: unless-stopped | |
command: | |
- --global.checkNewVersion=false | |
- --global.sendAnonymousUSage=false | |
- --providers.docker=true | |
- --providers.docker.exposedbydefault=false | |
- --log.level=INFO | |
- --accesslog.filters.statuscodes=400-499 | |
# Https entrypoints | |
- --entrypoints.web.address=:80 | |
- --entrypoints.web.http.redirections.entrypoint.to=websecure | |
- --entrypoints.web.http.redirections.entrypoint.scheme=https | |
- --entrypoints.websecure.address=:443 | |
- --certificatesresolvers.mydnschallenge.acme.email=YOUR_EMAIL | |
- --certificatesresolvers.mydnschallenge.acme.storage=/data/acme.json | |
- --certificatesresolvers.mydnschallenge.acme.httpchallenge.entrypoint=web | |
# Rustdesk entrypoints | |
- --entrypoints.rd5-tcp.address=:21115/tcp # ID Server - NAT type test | |
- --entrypoints.rd6-tcp.address=:21116/tcp # ID Server - TCP hole punching | |
- --entrypoints.rd7-tcp.address=:21117/tcp # Relay Server - Relay services | |
# RustDesk ID/Rendezvous server and Relay server | |
# | |
# This container uses rustdesk-server-s6 instead of rustdesk-server. The difference is that | |
# rustdesk-server-s6 is based on s6-overlay which runs the two services hbbr and hbbs in the same | |
# container. | |
rustdesk: | |
container_name: rustdesk | |
image: ghcr.io/rustdesk/rustdesk-server-s6:latest | |
volumes: | |
- LOCAL_DIR_TO_HOST_THE_DATABASE:/db | |
- LOCAL_DIR_TO_HOST_THE_KEYS:/data | |
restart: unless-stopped | |
environment: | |
- RELAY=DOMAIN_NAME:21117 | |
- ENCRYPTED_ONLY=1 | |
- DB_URL=/db/db_v2.sqlite3 | |
# The private and public keys must be generated with the following command: | |
# Generate the private key: `openssl genpkey -algorithm Ed25519 -out private.key` | |
# Generate the public key: `openssl pkey -in private.key -pubout -out public.key` | |
# Display botk keys and copy them below: `cat private.key public.key` | |
# openssl rsa -in private.pem -pubout -out public.pem | |
- KEY_PRIV=THE_PRIVATE_KEY | |
- KEY_PUB=THE_PUBLIC_KEY | |
- RUST_LOG=debug | |
ports: | |
# Rustdesk | |
# Note that 21116/udp is causing connections issue with Rustdesk so we | |
# directly open the port in the rustdesk container instead of going through Traefik. | |
- 21116:21116/udp # ID Server - ID registration and heartbeat | |
labels: | |
- traefik.enable=true | |
# 21115/tcp # ID Server - NAT type test | |
- traefik.tcp.routers.rustdesk-rd5.entrypoints=rd5-tcp | |
- traefik.tcp.routers.rustdesk-rd5.rule=HostSNI(`*`) | |
- traefik.tcp.routers.rustdesk-rd5.service=rustdesk-rd5 | |
- traefik.tcp.services.rustdesk-rd5.loadbalancer.server.port=21115 | |
- traefik.tcp.routers.rustdesk-rd5.tls=false | |
- traefik.tcp.routers.rustdesk-rd5.tls.passthrough=true | |
# 21116/tcp # ID Server - TCP hole punching | |
- traefik.tcp.routers.rustdesk-rd6.entrypoints=rd6-tcp | |
- traefik.tcp.routers.rustdesk-rd6.rule=HostSNI(`*`) | |
- traefik.tcp.routers.rustdesk-rd6.service=rustdesk-rd6 | |
- traefik.tcp.services.rustdesk-rd6.loadbalancer.server.port=21116 | |
- traefik.tcp.routers.rustdesk-rd6.tls=false | |
- traefik.tcp.routers.rustdesk-rd6.tls.passthrough=true | |
# 21117/tcp # Relay Server - Relay services | |
- traefik.tcp.routers.rustdesk-rd7.entrypoints=rd7-tcp | |
- traefik.tcp.routers.rustdesk-rd7.rule=HostSNI(`*`) | |
- traefik.tcp.routers.rustdesk-rd7.service=rustdesk-rd7 | |
- traefik.tcp.services.rustdesk-rd7.loadbalancer.server.port=21117 | |
- traefik.tcp.routers.rustdesk-rd7.tls=false | |
- traefik.tcp.routers.rustdesk-rd7.tls.passthrough=true | |
# 21118/http # ID Server - Web client | |
- traefik.http.routers.rustdesk-rd8.rule=Host(`DOMAIN_NAME`) && PathPrefix(`/ws/id`) | |
- traefik.http.routers.rustdesk-rd8.entrypoints=websecure | |
- traefik.http.routers.rustdesk-rd8.service=rustdesk-rd8 | |
- traefik.http.services.rustdesk-rd8.loadbalancer.server.port=21118 | |
- traefik.http.routers.rustdesk-rd8.tls.certresolver=mydnschallenge | |
- traefik.http.routers.rustdesk-rd8.middlewares=rustdesk-headers | |
# 21119/http # Relay Server - Web client | |
- traefik.http.routers.rustdesk-rd9.rule=Host(`DOMAIN_NAME`) && PathPrefix(`/ws/relay`) | |
- traefik.http.routers.rustdesk-rd9.entrypoints=websecure | |
- traefik.http.routers.rustdesk-rd9.service=rustdesk-rd9 | |
- traefik.http.services.rustdesk-rd9.loadbalancer.server.port=21119 | |
- traefik.http.routers.rustdesk-rd9.tls.certresolver=mydnschallenge | |
- traefik.http.routers.rustdesk-rd9.middlewares=rustdesk-headers | |
# Headers configurations for rustdesk-rd8 and rustdesk-rd8 | |
- traefik.http.middlewares.rustdesk-headers.headers.customRequestHeaders.X-Forwarded-Proto=https | |
- traefik.http.middlewares.rustdesk-headers.headers.customRequestHeaders.X-Real-IP=true | |
- traefik.http.middlewares.rustdesk-headers.headers.customRequestHeaders.Host=Host(`DOMAIN_NAME`) |
as per official documentation the keys can be generated using docker run --rm --entrypoint /usr/bin/rustdesk-utils rustdesk/rustdesk-server-s6:latest genkeypair
. This worked for me, the gist should be updated with this command.
Hi, just a quick question, I get multiple error messages regarding the entry points
# Rustdesk entrypoints - --entrypoints.rd5-tcp.address=:21115/tcp # ID Server - NAT type test - --entrypoints.rd6-tcp.address=:21116/tcp # ID Server - TCP hole punching - --entrypoints.rd7-tcp.address=:21117/tcp # Relay Server - Relay services
The traefik logs state that the entry points do not exist. I tried to set them in my traefik.yml and within the command section.
Hi, just a quick question, I get multiple error messages regarding the entry points
# Rustdesk entrypoints - --entrypoints.rd5-tcp.address=:21115/tcp # ID Server - NAT type test - --entrypoints.rd6-tcp.address=:21116/tcp # ID Server - TCP hole punching - --entrypoints.rd7-tcp.address=:21117/tcp # Relay Server - Relay services
The traefik logs state that the entry points do not exist. I tried to set them in my traefik.yml and within the command section.
I wasted a couple of hours with the same issue. Then I remembered I also had a traefik.yml in addition to my docker-compose.yml (where I added the above config).
Creating entrypoints in traefik.yml sorted the issue.
entryPoints:
web:
address: ":80"
websecure:
address: ":443"
rd5-tcp:
address: ":21115/tcp"
rd6-tcp:
address: ":21116/tcp"
rd7-tcp:
address: ":21117/tcp"
Hi, I do not understand how the web client works. If i try the URL i get 404 not found. Must I do something extra?
Probably the wrong post, I'm curious if anyone has managed to get rustdesk working with Caddy. I haven't found much by way of Google and ChatGPT couldn't solve (for me).
I'm also running as an LXC (not docker) via https://community-scripts.github.io/ProxmoxVE/scripts?id=rustdeskserver
Hi,
Could you help me out? Im following your instructions to the letter but i get an error (docker logs):
I tried multiple things:
Also, what do i need to do with: "openssl rsa -in private.pem -pubout -out public.pem" ? Doesnt seem to be connected with the commands above.