-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
80 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[taky] | ||
# System hostname | ||
#hostname=taky.local | ||
# The TAK Server nodeId | ||
#node_id=TAKY | ||
# The IP to bind to. Defaults to 0.0.0.0. To use IPv6, set to "::" | ||
#bind_ip= | ||
# The server's public IP address | ||
#public_ip= | ||
|
||
[cot_server] | ||
# If left blank, taky will listen on 8087 without SSL, or 8089 with SSL | ||
#port= | ||
# Where to store a log of .cot messages from the client for debug purposes | ||
#log_cot= | ||
# The monitor IP address. Recommend 127.0.0.1 | ||
#mon_ip=127.0.0.1 | ||
# Pick any port to enable the monitor server (ssl must be enabled) | ||
#mon_port=12345 | ||
|
||
[dp_server] | ||
# Where user datapackage uploads are stored. | ||
# For quick testing, set to /tmp/taky | ||
#upload_path=/var/taky/dp-user | ||
|
||
[ssl] | ||
# SSL is disabled by default. Set enabled to "true" to enable | ||
#enabled=false | ||
|
||
# Should taky require clients to have a certificate? | ||
#client_cert_required=false | ||
|
||
# The server certificate or certificate+keyfile | ||
#cert=/etc/taky/ssl/server.crt | ||
|
||
# Specify the SSL key path | ||
#key=/etc/taky/ssl/server.key | ||
|
||
# Specify the SSL key password (if required) | ||
#key_pw= | ||
|
||
# Specify an explicit CA certificate | ||
# If left blank, will use system CA certificates | ||
#ca=/etc/taky/ssl/ca.crt | ||
|
||
# If you want to use takyctl's build_client, you'll need to specify the | ||
# following items. (`takyctl setup` will build these for you!) | ||
#ca_key=/etc/taky/ssl/ca.key | ||
#server_p12=/etc/taky/ssl/server.p12 | ||
#server_p12_key=atakatak |