-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.example.yaml
49 lines (49 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
49
---
mqtt:
topic: 'topic/in/shairport-sync' # there should NOT be a leading slash!
host: raspimqtt # ideally a resolvable hostname (e.g. /etc/host entry)
port: 1883
username: null
password: null
use_tls: false
tls:
ca_certs_path: null
certfile_path: null
keyfile_path: null
logger: true
web_server:
#host: '0.0.0.0'
host: '::'
port: 8080
debug: false
secret_key: 'secrets!'
webui:
show_player: true
show_artwork: true
artwork_rounded_corners: true
show_player_extended: true # volume+slider and mute
show_player_shuffle: false
show_player_seeking: false
show_player_stop: true
show_track_metadata: true
track_metadata:
- artist
- album
- title
# - genre
show_update_info: true
# ---
# mqtt:
# topic: 'shairport-sync/name'
# host: rpih1 # this should be a resolvable hostname
# port: 8883
# use_tls: true
# tls:
# ca_certs_path: /path/to/ca_certs # can be chained.pem or directory
# certfile_path: client_certificate.crt
# keyfile_path: key.pem
# # only for debugging # allow_insecure_server_certificate: false
# web_server:
# host: '0.0.0.0'
# port: 8080
# debug: true