初始化

This commit is contained in:
2025-07-30 13:39:32 +08:00
commit d1f2452b28
253 changed files with 32087 additions and 0 deletions

40
config.example.yaml Normal file
View File

@@ -0,0 +1,40 @@
# Run configuration example. See full config file spec in src/types/Configuration.d.ts
# Device trackers
## track android devices (default: true, if was INCLUDE_GOOG enabled in build config)
runGoogTracker: false
## track iOS devices (default: true, if was INCLUDE_APPL enabled in build config)
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