Options
Options are passed to NextAuth.js when initializing it in an API route.
note
The only required options are site and providers.
Options
site
- Default value:
empty string
- Required: Yes
Description
The fully qualified URL for the root of your site.
e.g. http://localhost:3000
or https://www.example.com
providers
- Default value:
[]
- Required: Yes
Description
An array of authentication providers for signing in (e.g. Google, Facebook, Twitter, GitHub, Email, etc) in any order. This can be one of the built-in providers or an object with a custom provider.
See the providers documentation for a list of supported providers and how to use them.
database
- Default value:
null
- Required: No (Except by Email provider)
Description
A database connection string or TypeORM configuration object.
NextAuth.js has built in support for MySQL, MariaDB, Postgress, MongoDB and SQLite databases.
The default database provider is also compatible with other ANSI SQL compatible databases.
NextAuth.js can can be used with any database by specifying a custom adapter
option.
tip
The Email provider currently requires a database to be configured.
secret
- Default value:
string
(SHA hash of the "options" object) - Required: No (but strongly recommended)
Description
A random string used to hash tokens and sign cookies (e.g. SHA hash).
If not provided will be auto-generated based on hash of all your provided options.
The default behaviour is secure, but volatile, and it is strongly recommended you explicitly specify a value for secret to avoid invalidating any tokens when the automatically generated hash changes.
session
- Default value:
object
- Required: No
Description
The session
object and all properties on it are optional.
Default values for this option are shown below:
jwt
- Default value:
object
- Required: No
Description
JSON Web Tokens are only used if JWT sessions are enabled with session: { jwt: true }
(see session
documentation).
The jwt
object and all properties on it are optional.
When enabled, JSON Web Tokens is signed with HMAC SHA256
and encrypted with symmetric AES
.
Using JWT to store sessions is often faster, cheaper and more scaleable relying on a database.
Default values for this option are shown below:
An example JSON WebToken contains an encrypted payload like this:
You can use the built-in getJwt()
helper method to read the token, like this:
note
The JWT is stored in the Session Token cookie – the same cookie used for database sessions.
pages
- Default value:
{}
- Required: No
Description
Specify URLs to be used if you want to create custom sign in, sign out and error pages.
Pages specified will override the corresponding built-in page.
For example:
See the documentation for the pages option for more information.
callbacks
- Default value:
object
- Required: No
Description
Callbacks are asynchronous functions you can use to control what happens when an action is performed.
Callbacks are extremely powerful, especially in scenarios involving JSON Web Tokens as they allow you to implement access controls without a database and to integrate with external databases or APIs.
You can specify a handler for any of the callbacks below.
See the callbacks documentation for more information on how to use the callback functions.
events
- Default value:
object
- Required: No
Description
Events are asynchronous functions that do not return a response, they are useful for audit logging.
You can specify a handler for any of these events below - e.g. for debugging or to create an audit log.
The content of the message object varies depending on the flow (e.g. OAuth or Email authentication flow, JWT or database sessions, etc), but typically contains a user object and/or contents of the JSON Web Token and other information relevent to the event.
debug
- Default value:
false
- Required: No
Description
Set debug to true
to enable debug messages for authentication and database operations.
Advanced Options
warning
Advanced options are passed the same way as basic options, but may have complex implications or side effects. You should try to avoid using advanced options unless you are very comfortable using them.
basePath
- Default value:
/api/auth
- Required: No
Description
This option allows you to specify a different base path if you don't want to use /api/auth
for some reason.
If you set this option you must also configure it along with the site
property in pages/_app.js
adapter
- Default value: Adapter.Default()
- Required: No
Description
A custom provider is an advanced option intended for use only you need to use NextAuth.js with a database configuration that is not supported by the default database
adapter.
See the adapter documentation for more information.
note
If the adapter
option is specified it overrides the database
option.
useSecureCookies
- Default value:
true
for HTTPS sites /false
for HTTP sites - Required: No
Description
When set to true
(the default for all site URLs that start with https://
) then all cookies set by NextAuth.js will only be accessible from HTTPS URLs.
This option defaults to false
on URLs that start with http://
(e.g. http://localhost:3000
) for developer convenience.
You can manually set this option to false
to disable this security feature and allow cookies to be accessible from non-secured URLs (this is not recommended).
note
Properties on any custom cookies
that are specified override this option.
warning
Setting this option to false in production is a security risk and may allow sessions to hijacked.
cookies
- Default value:
{}
- Required: No
Description
You can override the default cookie names and options for any of the cookies used by NextAuth.js.
This is an advanced option and using it is not recommended as you may break authentication or introduce security flaws into your application.
You can specify one or more cookies with custom properties, but if you specify custom options for a cookie you must provided all the options for it. You will also likely want to create conditional behaviour to support local development (e.g. setting secure: false
and not using cookie prefixes on localhost URLs).
For example:
warning
Changing the cookie options may introduce security flaws into your application and may break NextAuth.js integration now or in a future update. Using this option is not recommended.