初始化
This commit is contained in:
40
config.example.yaml
Normal file
40
config.example.yaml
Normal 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
|
||||
Reference in New Issue
Block a user