fix(installer): move non reusable fields from default output
- Make it explicit that you should not reuse those fields, as they should always be specified. - Add empty icecast output public_url field.
This commit is contained in:
parent
a85d303a61
commit
e9f05975fe
|
@ -132,12 +132,8 @@ stream:
|
||||||
.default_icecast_output: &default_icecast_output
|
.default_icecast_output: &default_icecast_output
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 8000
|
port: 8000
|
||||||
mount: main
|
|
||||||
source_password: hackme
|
source_password: hackme
|
||||||
admin_password: hackme
|
admin_password: hackme
|
||||||
audio:
|
|
||||||
format: ogg
|
|
||||||
bitrate: 256
|
|
||||||
name: LibreTime!
|
name: LibreTime!
|
||||||
description: LibreTime Radio!
|
description: LibreTime Radio!
|
||||||
website: https://libretime.org
|
website: https://libretime.org
|
||||||
|
@ -149,6 +145,11 @@ stream:
|
||||||
# The default Icecast output stream
|
# The default Icecast output stream
|
||||||
- <<: *default_icecast_output
|
- <<: *default_icecast_output
|
||||||
enabled: true
|
enabled: true
|
||||||
|
public_url:
|
||||||
|
mount: main
|
||||||
|
audio:
|
||||||
|
format: ogg
|
||||||
|
bitrate: 256
|
||||||
|
|
||||||
# You can define extra outputs by reusing the default output using a yaml anchor
|
# You can define extra outputs by reusing the default output using a yaml anchor
|
||||||
- <<: *default_icecast_output
|
- <<: *default_icecast_output
|
||||||
|
|
Loading…
Reference in New Issue