8000 Revive startup parameter `--server.session-timeout` by jsteemann · Pull Request #720 · arangodb/docs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Revive startup parameter --server.session-timeout #720

Merged
merged 4 commits into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions 3.9/programs-arangod-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,19 @@ If set to *false* only use the external authentication system. If

The default value is *true*.

## Timeout for web interface sessions

<small>Introduced in: v3.9.0</small>

`--server.session-timeout value`

The timeout value for web interface sessions is configurable via the
startup option `--server.session-timeout`. The value for the option can
be specified in seconds.

The session will be renewed automatically as long as you regularly interact with
the Web UI in your browser. You will not get logged out while actively using it.

## Server threads

`--server.minimal-threads number`
Expand Down
12 changes: 12 additions & 0 deletions 3.9/release-notes-upgrading-changes39.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ runtime.
Startup options
---------------

### Timeout for web interface sessions

The timeout value for web interface sessions is now configurable via the
startup option `--server.session-timeout`. The value for the option can
be specified in seconds.

The default timeout value for web interface sessions is **one hour** in
ArangoDB 3.9. Previous versions of ArangoDB had a longer, hard-coded timeout.

The session will be renewed automatically as long as you regularly interact with
the Web UI in your browser. You will not get logged out while actively using it.

### Disallowed usage of collection names in AQL expressions

The startup option `--query.allow-collections-in-expressions` added in 3.8.0
Expand Down
0