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:
jo 2022-09-08 10:35:36 +02:00 committed by Kyle Robbertze
parent a85d303a61
commit e9f05975fe
1 changed files with 5 additions and 4 deletions

View File

@ -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