forked from erikdubbelboer/phpRedisAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
21 changed files
with
724 additions
and
515 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
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
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 |
---|---|---|
@@ -1,21 +1,42 @@ | ||
<? | ||
|
||
$config = array( | ||
'host' => '127.0.0.1', | ||
'port' => 6379, | ||
'servers' => array( | ||
array( | ||
'name' => 'server 1', // Optional name. | ||
'host' => '127.0.0.1', | ||
'port' => 6379, | ||
|
||
// Optional authentication. | ||
//'auth' => 'redispasswordhere' // Warning: The password is send in plain-text to the redis server. | ||
), | ||
|
||
/*array( | ||
'host' => 'localhost', | ||
'port' => 6380 | ||
)*/ | ||
), | ||
|
||
//'auth' => 'redispasswordhere', // Warning: The password is sent in plain-text to the redis server. | ||
|
||
'seperator' => ':', | ||
|
||
|
||
// Uncomment to show less information and make phpRedisAdmin fire less commands to the Redis server. Recommended for a really busy Redis server. | ||
//'faster' => true, | ||
|
||
|
||
// Uncomment to enable HTTP authentication | ||
/*'login' => array( | ||
// Username => Password | ||
// Multiple combinations can be used | ||
'username' => 'password' | ||
)*/ | ||
),*/ | ||
|
||
|
||
|
||
|
||
// You can ignore settings below this point. | ||
|
||
'maxkeylen' => 30 | ||
); | ||
|
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 |
---|---|---|
|
@@ -35,6 +35,11 @@ border: 0; | |
} | ||
|
||
|
||
.clear { | ||
clear: left; | ||
} | ||
|
||
|
||
.info { | ||
color: #aaa; | ||
font-weight: normal; | ||
|
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
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
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
Oops, something went wrong.