feat(playout): allow liquidsoap listen address configuration

This commit is contained in:
jo 2022-08-18 12:11:27 +02:00 committed by Kyle Robbertze
parent c8cb100645
commit 37b8b17ed3
6 changed files with 56 additions and 3 deletions

View file

@ -152,6 +152,12 @@ libretime-worker
The `playout` section configure anything related to the playout service.
:::caution
When changing the `playout.liquidsoap_*` entries, make sure to also configure the `liquidsoap.server_listen_*` entries accordingly.
:::
```yml
playout:
# Liquidsoap connection host.
@ -185,6 +191,36 @@ In order to apply the changes made in this section, please restart the following
libretime-playout
```
## Liquidsoap
The `liquidsoap` section configure anything related to the liquidsoap service.
:::caution
When changing the `liquidsoap.server_listen_*` entries, make sure to also configure the `playout.liquidsoap_*` entries accordingly.
:::
```yml
liquidsoap:
# Liquidsoap server listen address.
# > default is 127.0.0.1
server_listen_address: "127.0.0.1"
# Liquidsoap server listen port.
# > default is 1234
server_listen_port: 1234
# Input harbor listen address.
# > default is ["0.0.0.0"]
harbor_listen_address: ["0.0.0.0"]
```
In order to apply the changes made in this section, please restart the following services:
```
libretime-liquidsoap
```
## LDAP
The `ldap` section provide additional configuration for the authentication mechanism defined in `general.auth`, please see the [custom authentication documentation](../custom-authentication.md) for more details.