Files
server-deploy/rustdesk/.env.example
2026-04-24 11:13:49 +08:00

29 lines
743 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ===========================================
# 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