增加rustdesk

This commit is contained in:
2026-04-24 11:13:49 +08:00
parent 18949f31ba
commit 3c5246afb5
17 changed files with 1780 additions and 19 deletions

28
rustdesk/.env.example Normal file
View File

@@ -0,0 +1,28 @@
# ===========================================
# RustDesk Server 配置文件
# ===========================================
# ----- 域名与证书 -----
# 访问域名(必填,如 rustdesk.example.com
RUSTDESK_DOMAIN=rustdesk.example.com
# Let's Encrypt 证书邮箱(必填)
CERTBOT_EMAIL=admin@example.com
# ----- Docker 镜像 -----
# RustDesk Server 镜像
RUSTDESK_IMAGE=rustdesk/rustdesk-server:latest
# ----- 网络 -----
# 绑定 IP默认 0.0.0.0 监听所有接口)
RUSTDESK_BIND_IP=0.0.0.0
# 仅允许加密连接1=是0=否)
ENCRYPTED_ONLY=1
# ----- 数据目录 -----
# RustDesk 数据目录(密钥对 + 数据库)
RUSTDESK_DATA_DIR=/var/lib/rustdesk
# 备份目录
BACKUP_DIR=/var/backups/rustdesk