aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorf0x52 <f@0x52.eu>2022-05-15 18:40:29 +0200
committerGitHub <noreply@github.com>2022-05-16 00:40:29 +0800
commit6680cca07f454c31efdc0770b4421dcba4734dfe (patch)
tree5fdc402c78546b7c3b22ead2c845a7327deb56fd /docs
parent761d4f40be3db03cee192494ab63ee8eb2f6a9d8 (diff)
downloadgitea-6680cca07f454c31efdc0770b4421dcba4734dfe.tar.gz
gitea-6680cca07f454c31efdc0770b4421dcba4734dfe.zip
clarify what session provider 'db' does (#19713)
* clarify what session provider 'db' does * Also update session.PROVIDER in app.example.ini Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/content/doc/advanced/config-cheat-sheet.en-us.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md
index 461795247d..4c43ba7ddb 100644
--- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md
+++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md
@@ -697,7 +697,7 @@ Define allowed algorithms and their minimum key length (use -1 to disable a type
## Session (`session`)
-- `PROVIDER`: **memory**: Session engine provider \[memory, file, redis, db, mysql, couchbase, memcache, postgres\].
+- `PROVIDER`: **memory**: Session engine provider \[memory, file, redis, db, mysql, couchbase, memcache, postgres\]. Setting `db` will reuse the configuration in `[database]`
- `PROVIDER_CONFIG`: **data/sessions**: For file, the root path; for db, empty (database config will be used); for others, the connection string.
- `COOKIE_SECURE`: **false**: Enable this to force using HTTPS for all session access.
- `COOKIE_NAME`: **i\_like\_gitea**: The name of the cookie used for the session ID.