From 2d0558e6b4ed4cb409f0bfe073ea7154733afcb3 Mon Sep 17 00:00:00 2001 From: deflax Date: Mon, 11 Oct 2021 00:33:26 +0000 Subject: [PATCH] provide example frontend config --- config/frontend/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 config/frontend/config.yml diff --git a/config/frontend/config.yml b/config/frontend/config.yml new file mode 100644 index 0000000..f3b2a6f --- /dev/null +++ b/config/frontend/config.yml @@ -0,0 +1,25 @@ +# This is the title and Subtitle displayed on the Head of the Page +pagetitle: vod-rtmp +subtitle: v1 + +# the footer +footer: "© 2021 by the zom.bi Team" + +# the ip or hostname used to generate rtmp URLs +rtmp_base: stream.example.com + +# this is the base url used to generate internal links +base_url: 127.0.0.1:5001 + +# the url to the nginx servers status page. +# this is used for discovering the running streams +# if you are running the docker-compose setup you don't need to change that. +stat_url : http://rtmp:18080/stat + +# web protocol - used for generating hls and internal links. +# change this to https if you are using https for example via traefik in front of this setup +web_proto: http + +# if you want to add another template you can place it in the "templates" folder +# leave it at "default" to use the included default template +template_folder: default