From 708d51fa713a34742fa90223fd8e1b666b3a6ab7 Mon Sep 17 00:00:00 2001 From: RustDesk <71636191+rustdesk@users.noreply.github.com> Date: Thu, 9 Apr 2026 14:30:03 +0800 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/FAQ.md b/FAQ.md index ee461d9..980fc5a 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1458,6 +1458,30 @@ Fails with error 403 https://github.com/rustdesk/rustdesk-server-pro/discussions > > User: The VM is configured behind a proxy but the container was not configured to use the proxy. +- Case 4: + +The [proxy](https://github.com/rustdesk/rustdesk/wiki/FAQ#proxy-for-pro-server) is not set correctly. If you run rustdesk service with systemd service, please set it in rustdesk-hbbs service. e.g. + +``` +#!/usr/bin/env bash +set -e + +PROXY_HOST="proxy.firma.local" +PROXY_PORT="8080" + +sudo mkdir -p /etc/systemd/system/rustdesk-hbbs.service.d + +cat </dev/null +[Service] +Environment="proxy=http://${PROXY_HOST}:${PROXY_PORT}" +EOF + +sudo systemctl daemon-reload +sudo systemctl restart rustdesk-hbbs.service +sudo systemctl show rustdesk-hbbs.service | grep -i Environment +sudo systemctl status rustdesk-hbbs.service --no-pager -l +``` + # Showing multiple remote minotors as individual windows https://x.com/rustdesk/status/1714199082640581039