From 93f4dc06225b19f6e8d05f4797a68892c7225887 Mon Sep 17 00:00:00 2001 From: Manish Chiniwalar Date: Sun, 6 Dec 2020 23:47:47 +0530 Subject: [PATCH] docs: Update default ports for support Databases (#839) https://next-auth.js.org/configuration/databases --- www/docs/configuration/databases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/docs/configuration/databases.md b/www/docs/configuration/databases.md index a681bf7e3f..48c3224498 100644 --- a/www/docs/configuration/databases.md +++ b/www/docs/configuration/databases.md @@ -144,7 +144,7 @@ Install module: #### Example ```js -database: 'postgres://username:password@127.0.0.1:3306/database_name' +database: 'postgres://username:password@127.0.0.1:5432/database_name' ``` ### Microsoft SQL Server @@ -166,7 +166,7 @@ Install module: #### Example ```js -database: 'mongodb://username:password@127.0.0.1:3306/database_name' +database: 'mongodb://username:password@127.0.0.1:27017/database_name' ``` ### SQLite