Skip to content

Commit f8e9314

Browse files
Add files via upload
1 parent f5088eb commit f8e9314

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

rustdesk.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# rustdesk.yml
2+
3+
# Server configuration
4+
server:
5+
# The address of the server
6+
address: "0.0.0.0" # Listen on all interfaces
7+
# The port for the server
8+
port: 21112 # Default port for RustDesk
9+
10+
# Database configuration
11+
database:
12+
# Path to the SQLite database file
13+
path: "/var/lib/rustdesk/rustdesk.db"
14+
15+
# Logging configuration
16+
logging:
17+
# Log level (debug, info, warn, error)
18+
level: "info"
19+
# Log file path
20+
file: "/var/log/rustdesk/rustdesk.log"
21+
22+
# Security settings
23+
security:
24+
# Enable or disable TLS
25+
tls: true
26+
# Path to the TLS certificate
27+
cert: "/etc/ssl/certs/rustdesk.crt"
28+
# Path to the TLS key
29+
key: "/etc/ssl/private/rustdesk.key"
30+
31+
# Optional: Additional settings
32+
# You can add more configuration options as needed

0 commit comments

Comments
 (0)