From e177d40ba5be6469cb185de85bfc40d999eda38e Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sat, 20 Mar 2021 13:29:39 +0100 Subject: [PATCH] DevDocs: Add explanations for new config modules The new config modules `customization` and `external-services` are explained in the dev doc overview of all config modules now. Signed-off-by: Philip Molares --- docs/content/dev/config.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/content/dev/config.md b/docs/content/dev/config.md index c799bc1d2..5452ace90 100644 --- a/docs/content/dev/config.md +++ b/docs/content/dev/config.md @@ -8,7 +8,7 @@ NestJS - the framework we use - is reading the variables from the environment an ## How the config code works -The config of HedgeDoc is split up into **six** different modules: +The config of HedgeDoc is split up into **eight** different modules: `app.config.ts` : General configuration of the app @@ -19,9 +19,15 @@ The config of HedgeDoc is split up into **six** different modules: `csp.config.ts` : Configuration for [Content Security Policy][csp] +`customization.config.ts` +: Config to customize the instance and set instance specific links + `database.config.ts` : Which database should be used +`external-services.config.ts` +: Which external services are activated and where can they be called + `hsts.config.ts` : Configuration for [HTTP Strict-Transport-Security][hsts]