mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-09 19:41:27 +03:00
Updated FAQ (markdown)
37
FAQ.md
37
FAQ.md
@@ -729,26 +729,6 @@ Example: https://github.com/rustdesk/rustdesk/pull/13453
|
|||||||
|
|
||||||
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
|
https://github.com/rustdesk/rustdesk-server-pro/issues/833#issuecomment-3588117836
|
||||||
|
|
||||||
|
|
||||||
@@ -1808,7 +1788,22 @@ https://github.com/rustdesk/rustdesk/discussions/1258
|
|||||||
|
|
||||||
# Possibilities to limit access to webconsole by IP/subnet
|
# Possibilities to limit access to webconsole by IP/subnet
|
||||||
|
|
||||||
https://github.com/rustdesk/rustdesk-server-pro/issues/833
|
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;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
# Multiple RustDesk IDs on the Same Device
|
# Multiple RustDesk IDs on the Same Device
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user