Configuration¶
The following configuration values exist for Flask-Session. Flask-Session
loads these values from your Flask application config, so you should configure
your app first before you pass it to Flask-Session. Note that these values
cannot be modified after the init_app
was applyed so make sure to not
modify them at runtime.
We are not supplying something like SESSION_REDIS_HOST
and
SESSION_REDIS_PORT
, if you want to use the RedisSessionInterface
,
you should configure SESSION_REDIS
to your own redis.Redis
instance.
This gives you more flexibility, like maybe you want to use the same
redis.Redis
instance for cache purpose too, then you do not need to keep
two redis.Redis
instance in the same process.
The following configuration values are builtin configuration values within Flask itself that are related to session. They are all understood by Flask-Session, for example, you should use PERMANENT_SESSION_LIFETIME to control your session lifetime.
|
the name of the session cookie |
|
the domain for the session cookie. If
this is not set, the cookie will be
valid for all subdomains of
|
|
the path for the session cookie. If
this is not set the cookie will be valid
for all of |
|
controls if the cookie should be set with the httponly flag. Defaults to True. |
|
controls if the cookie should be set with the secure flag. Defaults to False. |
|
the lifetime of a permanent session as
|
A list of configuration keys also understood by the extension:
|
Specifies which type of session interface to use. Built-in session types:
|
|
Whether use permanent session or not, default
to be |
|
Whether sign the session cookie sid or not,
if set to |
|
A prefix that is added before all session keys. This makes it possible to use the same backend storage server for different apps, default “session:” |
|
A |
|
A |
|
The directory where session files are stored. Default to use flask_session directory under current working directory. |
|
The maximum number of items the session stores before it starts deleting some, default 500 |
|
The file mode wanted for the session files, default 0600 |
|
A |
|
The MongoDB database you want to use, default “flask_session” |
|
The MongoDB collection you want to use, default “sessions” |
|
A |
|
The name of the SQL table you want to use, default “sessions” |
Basically you only need to configure SESSION_TYPE
.
Note
By default, all non-null sessions in Flask-Session are permanent.
New in version 0.2: SESSION_TYPE
: sqlalchemy, SESSION_USE_SIGNER