Lowercase name of the cookie where session id will be stored.
Notice that this name should be unpredictable one (e.g. not 'sid', 'id' etc).
Also, cookie name should not begin with __Host- or __Secure- prefixes, as they will be added automatically.
Path attribute.
Whether session id cookie need to be persisted in browser.
When set to:
- true - sets Max-Age attribute which makes the browser to persist that cookie for specified amount of time
- false - doesn't set Max-Age, nor Expires attribute which makes the browser to not persist that cookie
SameSite attribute.
Set value to false if you don't want to set this attribute.
Recommended value is strict.
Domain attribute.
Recommended value is to be left undefined.