๐ JWT Expiration
Overviewโ
Open WebUI provides a feature that allows administrators to configure the expiration time of their JWT (JSON Web Token) token. This setting is crucial for ensuring secure access to the API, as it determines how long a JWT token remains valid for.
Configuring JWT Expirationโ
To configure the JWT expiration time, follow these steps:
Option 1: Configure through the Admin Panelโ
- Log in to your Open WebUI instance as an administrator.
- Navigate to the
Admin Panel
->Settings
->General
. - Locate the
JWT Expiration
option. - Enter the desired expiration time value.
- Save the changes.
Option 2: Configure through Environment Variablesโ
Alternatively, you can configure the JWT expiration time by setting the JWT_EXPIRES_IN
environment variable.
For more information on configuring environment variables in Open WebUI, see Environment Variable Configuration.
Generating a Secret Key for JWT Tokensโ
Open WebUI uses a secret key to generate JWT tokens. By default, this secret key is randomly generated on the first start of the container. However, you can override this secret key by setting the WEBUI_SECRET_KEY
environment variable.
Environment Variable Descriptionsโ
JWT_EXPIRES_IN
:- Type: int
- Default: -1
- Description: Sets the JWT expiration time in seconds. A value of -1 disables expiration.
WEBUI_SECRET_KEY
:- Type: str
- Default: t0p-s3cr3t
- Docker Default: Randomly generated on first start
- Description: Overrides the randomly generated string used for JSON Web Token.
Valid Time Unitsโ
s
: secondsm
: minutesh
: hoursd
: daysw
: weeks-1
: no expiration
Authentication with JWT Tokensโ
To authenticate your API requests using your JWT token, obtain your API key from Settings > Account > API Keys > API Key
in Open WebUI. Alternatively, you can obtain a JWT token
from the same location.
Note: The JWT token is used for authentication purposes only and should be kept secure to prevent unauthorized access to the API.
FAQโ
- Q: What is the default expiration time for JWT tokens in Open WebUI? A: The default expiration time for JWT tokens in Open WebUI is -1, which disables expiration.
- Q: Can I configure the JWT expiration time using environment variables?
A: Yes, you can configure the JWT expiration time by setting the
JWT_EXPIRES_IN
environment variable. - Q: What are the valid time units for configuring JWT expiration in Open WebUI?
A: The valid time units are
s
,m
,h
,d
,w
, or-1
for no expiration. - Q: How do I obtain a JWT token for authentication purposes?
A: You can obtain a JWT token from the Open WebUI API or by navigating to
Settings > Account
in the Open WebUI admin panel. - Q: Can I override the default secret key used for JWT tokens?
A: Yes, you can override the default secret key by setting the
WEBUI_SECRET_KEY
environment variable.