-
Notifications
You must be signed in to change notification settings - Fork 4
/
configuration.yaml.example
51 lines (39 loc) · 1.79 KB
/
configuration.yaml.example
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
39
40
41
42
43
44
45
46
47
48
49
50
51
# configuration for OwnTracks backend quicksetup
# Specify your DNS domain, the name by which this OwnTracks
# backend will be reacheable. We use this to enroll in
# Let's Encrypt certificates for this domain on your behalf
#
# Make sure you replace 'owntracks.example.net' by the correct
# name for your installation.
#
dns_domain: "owntracks.example.net"
# Specify your email address. We use this when signing up on your
# behalf to Let's Encrypt and for nothing else. If you don't
# configure an email address, we set up without SSL/TLS
email: "[email protected]"
# We strongly recommend you sign up for the free reverse geo
# service at OpenCage. It costs you nothing, and they provide
# you with an API key you add here.
#
# opencage_apikey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# Configure yourself and a list of friends who will be using
# this backend. Each friend will use their "username" to login
# to the site and to the apps. Their device is a "devicename"
# (this can be any suitable name, but we recommend you keep it
# generic so as to not have to change this if you move to a
# distinct device; i.e. "myphone" instead of "siemens-e2"),
# and their "tid" is a tracker- id which is used to label users
# on the map. A tid is a string of length two characters.
# Optionally a "password" may be set below; if omitted, passwords
# are generated and stored at /usr/local/owntracks/userdata/*.pass
# on this system.
#
# username and devicename may contain digits and lowercase letters.
friends:
- { tid: "JJ", username: "jane", devicename: "nokia" }
- { tid: "AA", username: "ernesto", devicename: "s10" }
- { tid: "BB", username: "sue", devicename: "myphone" }
# ---- advanced options below
# Path to an optional Lua script the Recorder should load at
# startup.
# lua_script: "/path/to/example.lua"