From 28778d6437552d9c063b5956f7a10a9d90e84b47 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 12 Jul 2020 13:12:30 -0700 Subject: [PATCH] Update documented paths for config file since it was changed to the root. Addresses #52 --- config/config.go | 2 +- doc/quickstart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 246e16ca0..9116ccd5d 100644 --- a/config/config.go +++ b/config/config.go @@ -94,7 +94,7 @@ type s3 struct { func (c *config) load(filePath string) error { if !utils.DoesFileExists(filePath) { - log.Fatal("ERROR: valid config/config.yaml is required. Copy config-example.yaml to config.yaml and edit") + log.Fatal("ERROR: valid config.yaml is required. Copy config-example.yaml to config.yaml and edit") } yamlFile, err := ioutil.ReadFile(filePath) diff --git a/doc/quickstart.md b/doc/quickstart.md index 3cb1133c7..58a98a0da 100644 --- a/doc/quickstart.md +++ b/doc/quickstart.md @@ -17,7 +17,7 @@ or..... ## Through docker 1. Download the code. `git clone https://github.com/gabek/owncast` -1. Copy `config-example.yaml` to `config/config.yaml` +1. Copy `config-example.yaml` to `config.yaml` 1. [Edit `config.yaml`](#configure) and change the path of ffmpeg to `/usr/bin/ffmpeg`. 1. Edit your stream key to whatever you'd like it to be in the config. 1. If you ever make any future config file changes you must rerun the `docker build` step otherwise you can just run the `docker run` step to run the service going forward.