Updated FAQ (markdown)

RustDesk
2026-01-28 00:24:04 +08:00
parent 8982116acf
commit 89c3889262

21
FAQ.md

@@ -705,6 +705,27 @@ Example: https://github.com/rustdesk/rustdesk/pull/13453
Example: https://github.com/rustdesk/rustdesk/pull/13453
# Possibilities to limit access to webconsole by IP/subn
All web console files start with `/static/`, all api start with `/api/`. If you use NGINX, you can write some NGINX rule to limit what you want.
e.g.
```
location /static/ {
allow 192.168.1.0/24; # Your office network
allow 10.0.0.0/8; # Private networks
allow YOUR.HOME.IP.HERE; # Your home IP
deny all;
proxy_pass http://127.0.0.1:21114;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
```
https://github.com/rustdesk/rustdesk-server-pro/issues/833#issuecomment-3588117836
# Delete devices with API