From de7703ffa01e80a8a5040f62f5e810acc7d4d4c1 Mon Sep 17 00:00:00 2001 From: jo Date: Fri, 15 Jul 2022 13:01:39 +0200 Subject: [PATCH] docs: add missing allowed_cors_origins config --- docs/admin-manual/setup/configuration.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/admin-manual/setup/configuration.md b/docs/admin-manual/setup/configuration.md index ba6a20992..c338ac100 100644 --- a/docs/admin-manual/setup/configuration.md +++ b/docs/admin-manual/setup/configuration.md @@ -11,11 +11,15 @@ The `general` section configure anything related to the legacy and API services. ```yml general: - # The public url. This field is REQUIRED + # The public url, this field is REQUIRED public_url: https://example.com # The internal API authentication key, this field is REQUIRED api_key: some_random_generated_secret! + # List of origins allowed to access resources on the server, default is [] + # The public url origin is automatically included + allowed_cors_origins: [] + # How many hours ahead Playout should cache scheduled media files, default is 1 cache_ahead_hours: 1