forked from NetrisTV/ws-scrcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.yaml
38 lines (35 loc) · 1.07 KB
/
config.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Run configuration example. See full config file spec in src/types/Configuration.d.ts
# Device trackers (default: true)
runGoogTracker: false
runApplTracker: false;
# HTTP[s] servers configuration
server:
- secure: false
port: 8000
redirectToSecure:
port: 8443
host: first-mobile-stand.example.com
- secure: true
port: 8443
options:
certPath: /Users/example/ssl/STAR_example_com.crt
keyPath: /Users/example/ssl/STAR_example_com.key
# Announce remote device trackers. The server doesn't check their availability.
remoteHostList:
- useProxy: true # optional, default: false
type: android # required, "android" | "ios" | ["android", "ios"]
secure: true # required, false for HTTP, true for HTTPS
hostname: second-mobile-stand.example.com
port: 8443
- useProxy: true
type: ios
secure: true
hostname: second-mobile-stand.example.com
port: 8443
- useProxy: true
type: # short variant
- ios
- android
secure: true
hostname: third-mobile-stand.example.com
port: 8443