-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardized redis url format to what is used in site documentation f…
…or db (numerical database names only).
- Loading branch information
Scott Reed
committed
May 9, 2018
1 parent
a80039e
commit 2fecba7
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,14 +185,14 @@ module.exports = { | |
* * | ||
***************************************************************************/ | ||
// adapter: '@sailshq/connect-redis', | ||
// url: 'redis://user:password@localhost:6379/dbname', | ||
// url: 'redis://user:password@localhost:6379/dbindex', | ||
//-------------------------------------------------------------------------- | ||
// /\ OR, to avoid checking it in to version control, you might opt to | ||
// || set sensitive credentials like this using an environment variable. | ||
// | ||
// For example: | ||
// ``` | ||
// sails_session__url=redis://admin:[email protected]:9562/sessions | ||
// sails_session__url=redis://admin:[email protected]:9562/5 | ||
// ``` | ||
// | ||
//-------------------------------------------------------------------------- | ||
|