From 7a32ff3fa3302aa04213c7df77fac8fbc05a52f8 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Thu, 21 Dec 2023 21:25:14 +0100 Subject: [PATCH] Update backend docs with newest update --- content/4.backend/2.configuration.md | 7 ++++++- content/4.backend/3.changelog.md | 12 ++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/content/4.backend/2.configuration.md b/content/4.backend/2.configuration.md index 8f33ad8..2e58eb9 100644 --- a/content/4.backend/2.configuration.md +++ b/content/4.backend/2.configuration.md @@ -52,7 +52,12 @@ This overwrites the setting at `server.cors`. Example: `false` ### `server.trustProxy` -Should the server trust reverse proxy headers? This is used for ratelimiting +Should the server trust reverse proxy headers? This is used to identify users for ratelimiting + +Example: `false` + +### `server.trustCloudflare` +Should the server trust cloudflare IP headers? This is used to identify users for ratelimiting Example: `false` diff --git a/content/4.backend/3.changelog.md b/content/4.backend/3.changelog.md index 488e3ec..d0f81fd 100644 --- a/content/4.backend/3.changelog.md +++ b/content/4.backend/3.changelog.md @@ -1,6 +1,18 @@ --- title: 'Changelog' --- + +# Version 1.2.0 + +Bugfixes and optimization. + +For this update, you will need to run migrations. + +- Added option to trust cloudflare IP headers for ratelimits +- Removed unused table +- Optimized prometheus metrics, should make less indexes + + # Version 1.1.5 Initial version of the backend.