From 74e5da9a0d81be1b4ce41bc820f176863d116a3f Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 28 Sep 2021 15:38:04 +0200 Subject: [PATCH] Remove example configuration from docs We already have config.yml.example as a source to copy and paste so one can get started easily. In addition, only one place has to be maintained for the example configuration. --- doc/03-Configuration.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/doc/03-Configuration.md b/doc/03-Configuration.md index 65140a53..8b4dd11b 100644 --- a/doc/03-Configuration.md +++ b/doc/03-Configuration.md @@ -3,6 +3,7 @@ ## Overview The configuration is stored in `/etc/icingadb/icingadb.yml`. +See [config.yml.example](../config.yml.example) for an example configuration. ## Redis Configuration @@ -23,16 +24,3 @@ port | **Required.** Database port. database | **Required.** Database database. user | **Required.** Database username. password | **Required.** Database password. - -## Example Configuration - -```yaml -database: - host: icingadb - port: 3306 - database: icingadb - user: icingadb - password: icingadb -redis: - address: redis:6380 -```