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 <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-03-20 13:29:39 +01:00 committed by David Mehren
parent 86f5498f51
commit e177d40ba5
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -8,7 +8,7 @@ NestJS - the framework we use - is reading the variables from the environment an
## How the config code works ## 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` `app.config.ts`
: General configuration of the app : General configuration of the app
@ -19,9 +19,15 @@ The config of HedgeDoc is split up into **six** different modules:
`csp.config.ts` `csp.config.ts`
: Configuration for [Content Security Policy][csp] : Configuration for [Content Security Policy][csp]
`customization.config.ts`
: Config to customize the instance and set instance specific links
`database.config.ts` `database.config.ts`
: Which database should be used : Which database should be used
`external-services.config.ts`
: Which external services are activated and where can they be called
`hsts.config.ts` `hsts.config.ts`
: Configuration for [HTTP Strict-Transport-Security][hsts] : Configuration for [HTTP Strict-Transport-Security][hsts]